summaryrefslogtreecommitdiff
path: root/nasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'nasm.c')
-rw-r--r--nasm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nasm.c b/nasm.c
index 6d8163d..07642ce 100644
--- a/nasm.c
+++ b/nasm.c
@@ -1850,10 +1850,10 @@ static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
src_get(&lineno, &currentfile);
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);