From 47d2b9841bcbde9571033e86388a7028869bdede Mon Sep 17 00:00:00 2001 From: Kevin Shanahan Date: Wed, 24 Apr 2013 15:04:35 +0930 Subject: [PATCH] qbsp: use 5 spaces instead of tab to pad msgStat Signed-off-by: Kevin Shanahan --- qbsp/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/util.c b/qbsp/util.c index 963195d2..fb4857d2 100644 --- a/qbsp/util.c +++ b/qbsp/util.c @@ -270,7 +270,7 @@ Message(int msgType, ...) case msgStat: // Output as-is to screen and log file szFmt = va_arg(argptr, char *); - strcpy(szBuffer, "\t"); + strcpy(szBuffer, " "); vsprintf(szBuffer + strlen(szBuffer), szFmt, argptr); // Concatenate strcat(szBuffer, "\n"); break;