From: nasm-bot f. C. G. <gor...@gm...> - 2018-12-01 18:36:19
|
Commit-ID: 8525757a315e6d3a5b8d2d4175dd6fb5e2133ec6 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=8525757a315e6d3a5b8d2d4175dd6fb5e2133ec6 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 1 Dec 2018 21:26:18 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sat, 1 Dec 2018 21:26:18 +0300 output: codeview -- Use nasm_error helpers Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/codeview.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output/codeview.c b/output/codeview.c index 0fbdcab..51eb2ea 100644 --- a/output/codeview.c +++ b/output/codeview.c @@ -369,9 +369,9 @@ done_0: fclose(f); done: if (!success) { - nasm_error(ERR_NONFATAL, "unable to hash file %s. " - "Debug information may be unavailable.\n", - filename); + nasm_nonfatal("unable to hash file %s. " + "Debug information may be unavailable.", + filename); } return; } |