aboutsummaryrefslogtreecommitdiff
path: root/src/boot.h
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-11-02 23:09:18 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-11-02 23:09:18 +0200
commit509bf85036b3c345f832558a299257effabba108 (patch)
tree0dda6c4fd5e072410d958b65af90755c5014b514 /src/boot.h
parentmakefile: make all target the default (diff)
downloadkernel-509bf85036b3c345f832558a299257effabba108.tar.xz
fix compiler warnings
Diffstat (limited to 'src/boot.h')
-rw-r--r--src/boot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.h b/src/boot.h
index 56ff219..8d62bdc 100644
--- a/src/boot.h
+++ b/src/boot.h
@@ -17,7 +17,7 @@ typedef struct {
char module_cmdline[64];
} boot_info_t;
-_Static_assert((1024 * 32 * sizeof(unsigned) * 8) == (1024 * 1024));
+_Static_assert((1024 * 32 * sizeof(unsigned) * 8) == (1024 * 1024), "bitmap size check");
#ifdef __cplusplus
}