sched/semaphore/spinlock.c: Fix build failure caused by a missing semicolon.

This commit is contained in:
Gregory Nutt
2019-09-16 07:44:01 -06:00
parent ba436b9434
commit 63c9c0c935
+1 -1
View File
@@ -338,7 +338,7 @@ void spin_lockr(FAR struct spinlock_s *lock)
while (up_testset(&lock->sp_lock) == SP_LOCKED)
{
sched_yield();
SP_DSB()
SP_DSB();
}
#ifdef CONFIG_SCHED_INSTRUMENTATION_SPINLOCKS