aboutsummaryrefslogtreecommitdiff
path: root/include/apos/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/apos/utils.h')
-rw-r--r--include/apos/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apos/utils.h b/include/apos/utils.h
index 6eeb54f..378f3a0 100644
--- a/include/apos/utils.h
+++ b/include/apos/utils.h
@@ -190,7 +190,7 @@
* Signal to the compiler that some region is unreachable.
* Mainly used for debugging with instrumentation, though it could provide some
* micro-optimisations.
-*/
+ */
#if __has_builtin(__builtin_unreachable)
#define unreachable() __builtin_unreachable()
#else