diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Bytecode/Label.h')
-rw-r--r-- | Userland/Libraries/LibJS/Bytecode/Label.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Bytecode/Label.h b/Userland/Libraries/LibJS/Bytecode/Label.h index b9d9a1c82d..56eec29dd0 100644 --- a/Userland/Libraries/LibJS/Bytecode/Label.h +++ b/Userland/Libraries/LibJS/Bytecode/Label.h @@ -29,6 +29,6 @@ template<> struct AK::Formatter<JS::Bytecode::Label> : AK::Formatter<FormatString> { void format(FormatBuilder& builder, JS::Bytecode::Label const& value) { - return AK::Formatter<FormatString>::format(builder, "@{}", value.address()); + return AK::Formatter<FormatString>::format(builder, "@{:x}", value.address()); } }; |