aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-08-08 12:50:43 +0200
committerEugen Wissner <belka@caraus.de>2026-08-08 12:50:43 +0200
commitae29de96c94e5c582f4424804464cdd29bf2a013 (patch)
tree10936bcf8e4feef83de5f8aed70aab11a1e46668 /boot
parenteaf5934f81dcd8ce5705f13b651d7b93ca8c459f (diff)
downloadelna-ae29de96c94e5c582f4424804464cdd29bf2a013.tar.gz
Fix GCC 16 compatibility with MacOSHEADcpp
Diffstat (limited to 'boot')
-rw-r--r--boot/lexer.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/lexer.ll b/boot/lexer.ll
index ba54433..e944560 100644
--- a/boot/lexer.ll
+++ b/boot/lexer.ll
@@ -210,7 +210,7 @@ to {
}
}
0[b|B]{BIGIT}+ {
- std::uint64_t result = strtoull(yytext, NULL, 2);
+ std::uint64_t result = strtoull(yytext + 2, NULL, 2);
if (errno == ERANGE)
{