projects
/
platform
/
upstream
/
nasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a962b3
)
outcoff: this is COFF, not binary
author
H. Peter Anvin
<hpa@zytor.com>
Fri, 17 Jul 2009 02:44:19 +0000
(22:44 -0400)
committer
H. Peter Anvin
<hpa@zytor.com>
Fri, 17 Jul 2009 02:44:19 +0000
(22:44 -0400)
Fix error message in outcoff to say COFF, not binary format...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
output/outcoff.c
patch
|
blob
|
history
diff --git
a/output/outcoff.c
b/output/outcoff.c
index 5a03bec560a12c8fa76c8cde8dc52ed478a19d74..044600fd9c8fc836a10b88a693fc9a7d24ffd393 100644
(file)
--- 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))