Skip to content
Snippets Groups Projects
Commit 093a1449 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

sem_wait(): Missing comma on debug statement caused compile error with DEBUG...

sem_wait(): Missing comma on debug statement caused compile error with DEBUG on.  Why hasn't that been noted before?
parent f38ff433
No related branches found
No related tags found
No related merge requests found
......@@ -10254,4 +10254,7 @@
(2015-04-21).
* include/assert.h: Wrap definitions of assertion macros in do while.
Suggested by orbitalfox (2015-04-22).
* sched/semaphore/sem_wait.c: Missing comma on debug statement caused
compile error with DEBUG on. Why hasn't that been noted before?
(2015-04-23).
 
......@@ -102,7 +102,7 @@ int sem_wait(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. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment