From 4fa546c5d8f4f15e89872778a01e8f2991ca0e91 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 5 Aug 2018 08:41:32 -0600 Subject: [PATCH] Refresh a configuration: Fix an assertion that was messed up in the previous commit. --- configs/stm32f4discovery/elf/defconfig | 1 - sched/group/group_exitinfo.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/configs/stm32f4discovery/elf/defconfig b/configs/stm32f4discovery/elf/defconfig index 7bfea54601..926d0a7029 100644 --- a/configs/stm32f4discovery/elf/defconfig +++ b/configs/stm32f4discovery/elf/defconfig @@ -5,7 +5,6 @@ CONFIG_ARCH_BOARD_STM32F4_DISCOVERY=y CONFIG_ARCH_CHIP_STM32=y CONFIG_ARCH_CHIP_STM32F407VG=y CONFIG_ARCH_STACKDUMP=y -CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYW=y CONFIG_ARMV7M_USEBASEPRI=y CONFIG_BINFMT_CONSTRUCTORS=y CONFIG_BINFMT_EXEPATH=y diff --git a/sched/group/group_exitinfo.c b/sched/group/group_exitinfo.c index 2eb3d38cd3..334ae02fef 100644 --- a/sched/group/group_exitinfo.c +++ b/sched/group/group_exitinfo.c @@ -81,7 +81,7 @@ int group_exitinfo(pid_t pid, FAR struct binary_s *bininfo) FAR struct task_group_s *group; irqstate_t flags; - DEBUGASSERT(bin != NULL); + DEBUGASSERT(bininfo != NULL); flags = spin_lock_irqsave(); /* Get the TCB associated with the PID */