From d1904c6cbbebd86da948e69fcdb16c4c03239b1c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 16 Jul 2009 22:44:19 -0400 Subject: [PATCH] outcoff: this is COFF, not binary Fix error message in outcoff to say COFF, not binary format... Signed-off-by: H. Peter Anvin --- output/outcoff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outcoff.c b/output/outcoff.c index 5a03bec5..044600fd 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)) -- 2.11.4.GIT