From b126279b52575f0d865d7a2d5ba1c1f68219eb8e Mon Sep 17 00:00:00 2001 From: Geoffrey Challen Date: Mon, 9 Jan 2017 22:59:41 -0500 Subject: [PATCH] Whitespace fix. --- common/libc/printf/tprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/libc/printf/tprintf.c b/common/libc/printf/tprintf.c index 06290bd..abec5a7 100644 --- a/common/libc/printf/tprintf.c +++ b/common/libc/printf/tprintf.c @@ -19,7 +19,7 @@ tprintf(const char *fmt, ...) #ifdef SECRET_TESTING return 0; #endif - + va_start(ap, fmt); chars = vprintf(fmt, ap); va_end(ap); @@ -37,7 +37,7 @@ nprintf(const char *fmt, ...) #ifndef SECRET_TESTING return 0; #endif - + va_start(ap, fmt); chars = vprintf(fmt, ap); va_end(ap);