qbsp: use 5 spaces instead of tab to pad msgStat

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-04-24 15:04:35 +09:30
parent a78115fa2c
commit 47d2b9841b
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ Message(int msgType, ...)
case msgStat: case msgStat:
// Output as-is to screen and log file // Output as-is to screen and log file
szFmt = va_arg(argptr, char *); szFmt = va_arg(argptr, char *);
strcpy(szBuffer, "\t"); strcpy(szBuffer, " ");
vsprintf(szBuffer + strlen(szBuffer), szFmt, argptr); // Concatenate vsprintf(szBuffer + strlen(szBuffer), szFmt, argptr); // Concatenate
strcat(szBuffer, "\n"); strcat(szBuffer, "\n");
break; break;