mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-09-22 10:43:39 -04:00
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>
This commit is contained in:
@@ -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))
|
||||
|
Reference in New Issue
Block a user