From b82f635b7ef050a1c7106b213c292134aa8e6c55 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 26 Mar 2012 14:57:54 -0700 Subject: [PATCH] chain.c: Fix misplaced #endif breaking non-DEBUG builds Fix misplaced #endif which made it impossible to build without DEBUG. Signed-off-by: H. Peter Anvin --- com32/chain/chain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/chain/chain.c b/com32/chain/chain.c index f458253..30153c4 100644 --- a/com32/chain/chain.c +++ b/com32/chain/chain.c @@ -471,10 +471,10 @@ static int setup_handover(const struct part_iter *iter, #ifdef DEBUG dprintf("MBR handover:\n"); disk_dos_part_dump(ha); +#endif } else { /* shouldn't ever happen */ goto bail; -#endif } data->base = 0x7be; -- 2.7.4