From 69fb02c3fc59015afa325f7714a3231a089946f4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= <joakim.nohlgard@eistec.se>
Date: Sun, 3 Jun 2018 14:30:08 +0200
Subject: [PATCH] core: uncrustify thread_flags.h

---
 core/include/thread_flags.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/include/thread_flags.h b/core/include/thread_flags.h
index 88fd508e8b..fce32615da 100644
--- a/core/include/thread_flags.h
+++ b/core/include/thread_flags.h
@@ -62,7 +62,7 @@
 #include "sched.h"  /* for thread_t typedef */
 
 #ifdef __cplusplus
- extern "C" {
+extern "C" {
 #endif
 
 /**
@@ -96,13 +96,13 @@
  *          ...
  *      }
  */
-#define THREAD_FLAG_MSG_WAITING      (0x1<<15)
+#define THREAD_FLAG_MSG_WAITING     (1u << 15)
 /**
  * @brief Set by @ref xtimer_set_timeout_flag() when the timer expires
  *
  * @see xtimer_set_timeout_flag
  */
-#define THREAD_FLAG_TIMEOUT          (0x1<<14)
+#define THREAD_FLAG_TIMEOUT         (1u << 14)
 /** @} */
 
 /**
-- 
GitLab