From a5fd1ca895f570d87a170a80eeea998c0de0affb Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 16 Jul 2009 22:46:34 -0400 Subject: [PATCH] outcoff: fix invalid reference to ofmt ofmt is a static in nasm.c (why?), not a global... Signed-off-by: H. Peter Anvin --- output/outcoff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outcoff.c b/output/outcoff.c index 044600fd..b27cc94e 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -420,7 +420,7 @@ static void coff_deflabel(char *name, int32_t segment, int64_t offset, if (special) error(ERR_NONFATAL, "COFF format does not support any" - " special symbol types", ofmt->name); + " special symbol types"); if (name[0] == '.' && name[1] == '.' && name[2] != '@') { if (strcmp(name,WRT_IMAGEBASE)) -- 2.11.4.GIT