From 86a66fe771a2a0c3d3f6c6c77da950202f6230bd Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Mon, 23 Nov 2015 21:50:51 +0100 Subject: [PATCH] POSIX Formatting change --- src/platforms/px4_posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/px4_posix.h b/src/platforms/px4_posix.h index 998342e057..fa1c60adee 100644 --- a/src/platforms/px4_posix.h +++ b/src/platforms/px4_posix.h @@ -62,7 +62,7 @@ typedef struct { __EXPORT int px4_sem_init(px4_sem_t *s, int pshared, unsigned value); __EXPORT int px4_sem_wait(px4_sem_t *s); -__EXPORT int px4_sem_timedwait(px4_sem_t * sem, const struct timespec * abstime); +__EXPORT int px4_sem_timedwait(px4_sem_t *sem, const struct timespec *abstime); __EXPORT int px4_sem_post(px4_sem_t *s); __EXPORT int px4_sem_getvalue(px4_sem_t *s, int *sval); __EXPORT int px4_sem_destroy(px4_sem_t *s);