Replace tabs by spaces in fprintf()

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2018-04-03 22:36:16 +01:00
parent ef87dd5a6e
commit e2b4554a5c
2 changed files with 3 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ noreturn_ void script_fatalerror(const char *fmt, ...)
va_start(args, fmt);
fprintf(stderr, "error: ");
script_PrintFileStack();
fprintf(stderr, ":\n\t");
fprintf(stderr, ":\n ");
vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
va_end(args);