From 5465795dc3b85bc4ae0f464e183ef7550cf01ac4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 18 Aug 2019 15:52:24 +0200 Subject: [PATCH] AK: The printf family was mixing up case and alternate form settings --- AK/PrintfImplementation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index 8ba21b92ec..3034bfa6f9 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -13,7 +13,7 @@ extern "C" size_t strlen(const char*); #endif template -[[gnu::always_inline]] inline int print_hex(PutChFunc putch, char*& bufptr, T number, bool alternate_form, bool upper_case, bool left_pad, bool zeroPad, u8 width) +[[gnu::always_inline]] inline int print_hex(PutChFunc putch, char*& bufptr, T number, bool upper_case, bool alternate_form, bool left_pad, bool zeroPad, u8 width) { int ret = 0;