From a7cb170cc43f661783f59fd7177a465a1b995ec0 Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Mon, 23 Nov 2015 22:05:17 +0100 Subject: [PATCH] PX4 semaphores: Formatting fix --- src/platforms/posix/px4_layer/px4_sem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/posix/px4_layer/px4_sem.cpp b/src/platforms/posix/px4_layer/px4_sem.cpp index 184b80a667..479922f2c1 100644 --- a/src/platforms/posix/px4_layer/px4_sem.cpp +++ b/src/platforms/posix/px4_layer/px4_sem.cpp @@ -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--;