1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

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

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;