mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
Everywhere: Prefer using {:#x} over 0x{:x}
We have a dedicated format specifier which adds the "0x" prefix, so let's use that instead of adding it manually.
This commit is contained in:
committed by
Andreas Kling
parent
31f30e732a
commit
36e36507d5
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user