diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2020-05-04 13:31:25 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-05 09:15:16 +0200 |
commit | 92815f313ad44a9fdb5e7f35bc273f4703388ff1 (patch) | |
tree | 7ecd073c400ee60ddd665072f2041ae2e667942b /AK/PrintfImplementation.h | |
parent | 8bd9f7e50eeae3e1103eb98941bc41bb852ab7a2 (diff) | |
download | serenity-92815f313ad44a9fdb5e7f35bc273f4703388ff1.zip |
AK: run clang-format on PrintfImplementation.h
Diffstat (limited to 'AK/PrintfImplementation.h')
-rw-r--r-- | AK/PrintfImplementation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index e6eef2d757..523ac81b07 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -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; |