Whitespace fix.

This commit is contained in:
Geoffrey Challen 2017-01-09 22:59:41 -05:00
parent e318e3171e
commit b126279b52

View File

@ -19,7 +19,7 @@ tprintf(const char *fmt, ...)
#ifdef SECRET_TESTING #ifdef SECRET_TESTING
return 0; return 0;
#endif #endif
va_start(ap, fmt); va_start(ap, fmt);
chars = vprintf(fmt, ap); chars = vprintf(fmt, ap);
va_end(ap); va_end(ap);
@ -37,7 +37,7 @@ nprintf(const char *fmt, ...)
#ifndef SECRET_TESTING #ifndef SECRET_TESTING
return 0; return 0;
#endif #endif
va_start(ap, fmt); va_start(ap, fmt);
chars = vprintf(fmt, ap); chars = vprintf(fmt, ap);
va_end(ap); va_end(ap);