summaryrefslogtreecommitdiff
path: root/src/include/rmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/rmodule.h')
-rw-r--r--src/include/rmodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/rmodule.h b/src/include/rmodule.h
index 2511537561..37fab4b19d 100644
--- a/src/include/rmodule.h
+++ b/src/include/rmodule.h
@@ -72,7 +72,7 @@ struct rmodule {
#if IS_ENABLED(CONFIG_RELOCATABLE_MODULES)
/* Rmodules have an entry point of named _start. */
#define RMODULE_ENTRY(entry_) \
- void _start(void *) __attribute__((alias (STRINGIFY(entry_))))
+ void _start(void *) __attribute__((alias(STRINGIFY(entry_))))
#else
#define RMODULE_ENTRY(entry_)
#endif