From 2672af737954fb17ec0ebf17e787219a504c4400 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 7 Nov 2010 01:09:36 +0300 Subject: [PATCH] coff: Cover 'else' with cond compilation It was a nit in first place. Signed-off-by: Cyrill Gorcunov --- output/outcoff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outcoff.c b/output/outcoff.c index 21a822f2..5c1de013 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -842,8 +842,8 @@ static inline void coff_adjust_relocs(struct Section *s) { if (s->nrelocs < IMAGE_SCN_MAX_RELOC) return; - else #ifdef OF_COFF + else { if (ofmt == &of_coff) nasm_error(ERR_FATAL, -- 2.11.4.GIT