diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-23 18:38:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-23 18:38:51 -0700 |
commit | 45b7431a0c4f7ef020a680a60843917ace4e99df (patch) | |
tree | 6fc7914c2df2dcfbfd5afcededded9a8f24573d5 /output | |
parent | 4401cc79a2e79b5661fe868a085f42553c55ef46 (diff) | |
download | nasm-45b7431a0c4f7ef020a680a60843917ace4e99df.tar.gz nasm-45b7431a0c4f7ef020a680a60843917ace4e99df.tar.bz2 nasm-45b7431a0c4f7ef020a680a60843917ace4e99df.zip |
Make SAFESEH syntax error ERR_NONFATAL
Incorrect use of SAFESEH is more suited for ERR_NONFATAL than ERR_FATAL
Diffstat (limited to 'output')
-rw-r--r-- | output/outcoff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/output/outcoff.c b/output/outcoff.c index a5cddf3..259c766 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; |