BR 3392529: remove excess printf() argument

The input file is provided by nasm_error(), we should not include it
in the printf list (compiler warning + wrong message.)

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2018-11-26 14:15:46 -08:00
parent 4885cc2ba8
commit da79432255

View File

@ -520,7 +520,7 @@ int main(int argc, char **argv)
outname = "nasm.out";
nasm_error(ERR_WARNING,
"default output file same as input, using `%s' for output\n",
inname, outname);
outname);
}
}