diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-02-15 02:21:07 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-02-15 02:21:07 +0400 |
commit | 04dba65098e7b679db58eb22147af5d6d0ea972f (patch) | |
tree | 3d780091cf7d7d93d932034819cf9e1e1d8498ad /nasm.c | |
parent | 22ad9043410c17c912cc026680fe8f68258f858e (diff) | |
download | nasm-04dba65098e7b679db58eb22147af5d6d0ea972f.tar.gz nasm-04dba65098e7b679db58eb22147af5d6d0ea972f.tar.bz2 nasm-04dba65098e7b679db58eb22147af5d6d0ea972f.zip |
nasm.c: Tabs to spaces in nasm_verror_gnu
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1850,10 +1850,10 @@ static void nasm_verror_gnu(int severity, const char *fmt, va_list ap) src_get(&lineno, ¤tfile); if (currentfile) { - fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno); - nasm_free(currentfile); + fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno); + nasm_free(currentfile); } else { - fputs("nasm: ", error_file); + fputs("nasm: ", error_file); } nasm_verror_common(severity, fmt, ap); |