summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2018-12-01 21:26:18 +0300
committerCyrill Gorcunov <gorcunov@gmail.com>2018-12-01 21:26:18 +0300
commit8525757a315e6d3a5b8d2d4175dd6fb5e2133ec6 (patch)
tree2f6e7906cfc87b4a2577880c0ca0cb3472abe21b
parentb449ce49d9e81c26e7aa2935144dd66bd1f36f08 (diff)
downloadnasm-8525757a315e6d3a5b8d2d4175dd6fb5e2133ec6.tar.gz
output: codeview -- Use nasm_error helpers
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--output/codeview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/output/codeview.c b/output/codeview.c
index 0fbdcab7..51eb2ea9 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;
}