From eace8501f73b0b2ee55e02d84e45cec03ab898d7 Mon Sep 17 00:00:00 2001 From: krasimir Date: Tue, 15 Mar 2005 10:33:41 +0000 Subject: [PATCH] [project @ 2005-03-15 10:33:41 by krasimir] Without semicolon after "foundit:" at least mingw32-gcc raises "error: label at end of compound statement". --- ghc/rts/Linker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/Linker.c b/ghc/rts/Linker.c index 41e80a9..5693bd2 100644 --- a/ghc/rts/Linker.c +++ b/ghc/rts/Linker.c @@ -2199,7 +2199,7 @@ ocResolve_PEi386 ( ObjectCode* oc ) /* Newline first because the interactive linker has printed "linking..." */ errorBelch("\n%s: unknown symbol `%s'", oc->fileName, symbol); return 0; - foundit: + foundit:; } checkProddableBlock(oc, pP); switch (reltab_j->Type) { -- 1.7.10.4