diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-07-16 22:44:19 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-16 22:44:19 -0400 |
commit | d1904c6cbbebd86da948e69fcdb16c4c03239b1c (patch) | |
tree | 880258943d3d704a38cc30b05be2a8942cfcd46e /output | |
parent | 8a962b3efdc146688075c1c6e36b6bad7597d1c2 (diff) | |
download | nasm-d1904c6cbbebd86da948e69fcdb16c4c03239b1c.tar.gz nasm-d1904c6cbbebd86da948e69fcdb16c4c03239b1c.tar.bz2 nasm-d1904c6cbbebd86da948e69fcdb16c4c03239b1c.zip |
outcoff: this is COFF, not binary
Fix error message in outcoff to say COFF, not binary format...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output')
-rw-r--r-- | output/outcoff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outcoff.c b/output/outcoff.c index 5a03bec..044600f 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -419,8 +419,8 @@ static void coff_deflabel(char *name, int32_t segment, int64_t offset, struct Symbol *sym; if (special) - error(ERR_NONFATAL, "binary format does not support any" - " special symbol types"); + error(ERR_NONFATAL, "COFF format does not support any" + " special symbol types", ofmt->name); if (name[0] == '.' && name[1] == '.' && name[2] != '@') { if (strcmp(name,WRT_IMAGEBASE)) |