diff --git a/sys/posix/pthread/include/pthread_spin.h b/sys/posix/pthread/include/pthread_spin.h index 2661029a7e..e744625e34 100644 --- a/sys/posix/pthread/include/pthread_spin.h +++ b/sys/posix/pthread/include/pthread_spin.h @@ -33,7 +33,7 @@ extern "C" { * Use irq_disable() and irq_restore() for shortterm locks instead. */ typedef struct { - atomic_flag flag; + atomic_flag flag; /**< Current lock state */ } pthread_spinlock_t; /**