diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-02 23:09:18 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-02 23:09:18 +0200 |
commit | 509bf85036b3c345f832558a299257effabba108 (patch) | |
tree | 0dda6c4fd5e072410d958b65af90755c5014b514 /src | |
parent | makefile: make all target the default (diff) | |
download | kernel-509bf85036b3c345f832558a299257effabba108.tar.xz |
fix compiler warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |