From 6973fe2cac9f7cf3ae8528b64883b54793005215 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 12 Sep 2018 09:14:13 +0000 Subject: [PATCH] Cleanup: Converted tabs to spaces --- log/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/log.c b/log/log.c index ef724eb..28c0dbd 100644 --- a/log/log.c +++ b/log/log.c @@ -527,7 +527,7 @@ static void __vsnprintf(char *str, size_t size, const char *format, va_list ap) snprintf(buf, sizeof(buf), "%lli", (long long int)va_arg(ap, long long int)); break; case 'z': - /* We do not use 'z' type of snprintf() here as it is not safe to use on a few outdated platforms. */ + /* We do not use 'z' type of snprintf() here as it is not safe to use on a few outdated platforms. */ if (*format == 'u') snprintf(buf, sizeof(buf), "%llu", (unsigned long long int)va_arg(ap, size_t)); else