diff options
Diffstat (limited to 'Userland/Libraries/LibWasm/Parser/Parser.cpp')
-rw-r--r-- | Userland/Libraries/LibWasm/Parser/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWasm/Parser/Parser.cpp b/Userland/Libraries/LibWasm/Parser/Parser.cpp index b16ea72ada..0560c9e1d5 100644 --- a/Userland/Libraries/LibWasm/Parser/Parser.cpp +++ b/Userland/Libraries/LibWasm/Parser/Parser.cpp @@ -158,7 +158,7 @@ ParseResult<FunctionType> FunctionType::parse(InputStream& stream) return with_eof_check(stream, ParseError::ExpectedKindTag); if (tag != Constants::function_signature_tag) { - dbgln("Expected 0x60, but found 0x{:x}", tag); + dbgln("Expected 0x60, but found {:#x}", tag); return with_eof_check(stream, ParseError::InvalidTag); } |