From ceab1c8cf5b60ff2805b9b56d9bcbfdde016dae3 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 12 Sep 2018 09:14:20 +0000 Subject: [PATCH] Cleanup: Code style --- log/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/log.c b/log/log.c index 28c0dbd..95ef1c9 100644 --- a/log/log.c +++ b/log/log.c @@ -551,7 +551,7 @@ static void __vsnprintf(char *str, size_t size, const char *format, va_list ap) // the if() is the outer structure so the inner for() // is branch optimized. - if (*format == 'H' ) + if (*format == 'H') { for (; *arg && block_len && size; arg++, size--, block_len--) {