diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index 92dc9681ee..dce6a20110 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -373,11 +373,11 @@ struct PrintfImpl { } ALWAYS_INLINE int format_p(const ModifierState&, ArgumentListRefT ap) const { - return print_hex(m_putch, m_bufptr, NextArgument()(ap), false, true, false, true, 8); + return print_hex(m_putch, m_bufptr, NextArgument()(ap), false, true, false, true, 8); } ALWAYS_INLINE int format_P(const ModifierState&, ArgumentListRefT ap) const { - return print_hex(m_putch, m_bufptr, NextArgument()(ap), true, true, false, true, 8); + return print_hex(m_putch, m_bufptr, NextArgument()(ap), true, true, false, true, 8); } ALWAYS_INLINE int format_percent(const ModifierState&, ArgumentListRefT) const {