From 92815f313ad44a9fdb5e7f35bc273f4703388ff1 Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Mon, 4 May 2020 13:31:25 +0200 Subject: [PATCH] AK: run clang-format on PrintfImplementation.h --- AK/PrintfImplementation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;