diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index 5c36d4bfde..e3d833e7f8 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -358,7 +358,7 @@ struct PrintfImpl { { if (state.long_qualifiers >= 2) return print_hex(m_putch, m_bufptr, NextArgument()(ap), false, state.alternate_form, state.left_pad, state.zero_pad, state.field_width); - return print_hex(m_putch, m_bufptr, NextArgument()(ap), false, state.alternate_form, state.left_pad, state.zero_pad, state.field_width); + return print_hex(m_putch, m_bufptr, NextArgument()(ap), false, state.alternate_form, state.left_pad, state.zero_pad, state.field_width); } ALWAYS_INLINE int format_X(const ModifierState& state, ArgumentListRefT ap) const {