PX4 semaphores: Formatting fix

This commit is contained in:
Lorenz Meier
2015-11-23 22:05:17 +01:00
parent 86a66fe771
commit a7cb170cc4
+1 -1
View File
@@ -75,7 +75,7 @@ int px4_sem_wait(px4_sem_t *s)
return 0;
}
int px4_sem_timedwait(px4_sem_t * s, const struct timespec * abstime)
int px4_sem_timedwait(px4_sem_t *s, const struct timespec *abstime)
{
pthread_mutex_lock(&(s->lock));
s->value--;