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--;