diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-08-08 12:50:43 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-08-08 12:50:43 +0200 |
| commit | ae29de96c94e5c582f4424804464cdd29bf2a013 (patch) | |
| tree | 10936bcf8e4feef83de5f8aed70aab11a1e46668 /boot/lexer.ll | |
| parent | eaf5934f81dcd8ce5705f13b651d7b93ca8c459f (diff) | |
| download | elna-ae29de96c94e5c582f4424804464cdd29bf2a013.tar.gz | |
Diffstat (limited to 'boot/lexer.ll')
| -rw-r--r-- | boot/lexer.ll | 2 |
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) { |
