From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-24 09:15:17
|
Commit-ID: 8e0acaad66c969d10c1477031bc7625d01c17a72 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=8e0acaad66c969d10c1477031bc7625d01c17a72 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 24 Nov 2018 12:03:31 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sat, 24 Nov 2018 12:12:15 +0300 Pass input filename into error message Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- asm/nasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm/nasm.c b/asm/nasm.c index 25ac36c..f1283e4 100644 --- a/asm/nasm.c +++ b/asm/nasm.c @@ -525,7 +525,7 @@ int main(int argc, char **argv) if (!strcmp(outname, inname)) { outname = "nasm.out"; nasm_error(ERR_WARNING, - "default output file same as input, using `%s' for output\n", + "default output file same as input `%s', using `%s' for output\n", inname, outname); } } |