AK: run clang-format on PrintfImplementation.h

This commit is contained in:
Emanuele Torre 2020-05-04 13:31:25 +02:00 committed by Andreas Kling
parent 8bd9f7e50e
commit 92815f313a
Notes: sideshowbarker 2024-07-19 06:58:51 +09:00

View File

@ -321,7 +321,7 @@ ALWAYS_INLINE int printf_internal(PutChFunc putch, char* buffer, const char*& fm
if (*(p + 1))
goto one_more;
}
if (! zero_pad && !field_width && *p == '0') {
if (!zero_pad && !field_width && *p == '0') {
zero_pad = true;
if (*(p + 1))
goto one_more;