summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nuttx/sched/wdog/wd_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/wdog/wd_create.c b/nuttx/sched/wdog/wd_create.c
index 459f0a68a..2c04724a4 100644
--- a/nuttx/sched/wdog/wd_create.c
+++ b/nuttx/sched/wdog/wd_create.c
@@ -107,7 +107,7 @@ WDOG_ID wd_create (void)
* the head of the free list.
*/
- if (g_wdnfree > CONFIG_WDOG_INTRESERVE || !up_interrupt_context())
+ if (g_wdnfree > CONFIG_WDOG_INTRESERVE || up_interrupt_context())
{
/* Remove the watchdog timer from the free list and decrement the
* count of free timers all with interrupts disabled.