summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-05-23 18:38:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-05-23 18:38:51 -0700
commit45b7431a0c4f7ef020a680a60843917ace4e99df (patch)
tree6fc7914c2df2dcfbfd5afcededded9a8f24573d5
parent4401cc79a2e79b5661fe868a085f42553c55ef46 (diff)
downloadnasm-45b7431a0c4f7ef020a680a60843917ace4e99df.tar.gz
Make SAFESEH syntax error ERR_NONFATAL
Incorrect use of SAFESEH is more suited for ERR_NONFATAL than ERR_FATAL
-rw-r--r--output/outcoff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/output/outcoff.c b/output/outcoff.c
index a5cddf37..259c7666 100644
--- a/output/outcoff.c
+++ b/output/outcoff.c
@@ -735,7 +735,8 @@ static int coff_directives(char *directive, char *value, int pass)
}
}
if (n == nsyms) {
- error(ERR_FATAL,"`safeseh' directive requires valid symbol");
+ error(ERR_NONFATAL,
+ "`safeseh' directive requires valid symbol");
}
}
return 1;