From 071658bb6d624ffd1b29aa77d4ad4acaf0d64444 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 23 Apr 2015 07:18:59 -0600 Subject: [PATCH] Another missing semicolon --- sched/semaphore/sem_trywait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/semaphore/sem_trywait.c b/sched/semaphore/sem_trywait.c index f7f6303a16..ed8ceab707 100644 --- a/sched/semaphore/sem_trywait.c +++ b/sched/semaphore/sem_trywait.c @@ -102,7 +102,7 @@ int sem_trywait(FAR sem_t *sem) /* This API should not be called from interrupt handlers */ - DEBUGASSERT(up_interrupt_context() == false) + DEBUGASSERT(up_interrupt_context() == false); /* Assume any errors reported are due to invalid arguments. */