From 3c86b74dc69754bd247612b8f0b5d9eb8cd44ee2 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Sat, 14 Aug 2021 14:47:47 +0200 Subject: [PATCH] core: uncrustify --- core/mutex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/mutex.c b/core/mutex.c index 9bf8690e68..01c2a11b2f 100644 --- a/core/mutex.c +++ b/core/mutex.c @@ -49,6 +49,7 @@ static inline __attribute__((always_inline)) void _block(mutex_t *mutex, unsigned irq_state) { thread_t *me = thread_get_active(); + /* Fail visibly even if a blocking action is called from somewhere where * it's subtly not allowed, eg. board_init */ assert(me != NULL);