summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-25 14:28:57 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-25 14:28:57 +0200
commite70c1c53237ff773a0e802642db04fe58a6deb22 (patch)
tree23e892eae46b06a5896cf232ad52ff3353a2ec13
parent56f5e218a2976d5d417db61a50035297c021561d (diff)
fix: MsgKit: use `struct LIBMSG_EXPR` instead of `LIBMSG_EXPR` for C
programs. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--dev/libMsg/MsgKit/Server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/libMsg/MsgKit/Server.h b/dev/libMsg/MsgKit/Server.h
index 4fa73ccc..022aa425 100644
--- a/dev/libMsg/MsgKit/Server.h
+++ b/dev/libMsg/MsgKit/Server.h
@@ -33,7 +33,7 @@ struct LIBMSG_EXPR final {
};
/// @brief Function type for LibMSG lisp.
-typedef Void (*libmsg_func_t)(LIBMSG_EXPR* self, VoidPtr arg, SizeT arg_size);
+typedef Void (*libmsg_func_t)(struct LIBMSG_EXPR* self, VoidPtr arg, SizeT arg_size);
IMPORT_C Void libmsg_init_library(libmsg_func_t* funcs, SizeT cnt);
IMPORT_C UInt32 libmsg_close_library(Void);