aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2012-03-26 14:57:54 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2012-03-26 14:57:54 -0700
commitb82f635b7ef050a1c7106b213c292134aa8e6c55 (patch)
treea41f8d3dd292d50b2aac372695519da87c882493
parentd7b070d71528d13b72a2408b3221e14e439154c8 (diff)
downloadsyslinux-b82f635b7ef050a1c7106b213c292134aa8e6c55.tar.gz
syslinux-b82f635b7ef050a1c7106b213c292134aa8e6c55.tar.xz
syslinux-b82f635b7ef050a1c7106b213c292134aa8e6c55.zip
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 <hpa@linux.intel.com>
-rw-r--r--com32/chain/chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/chain/chain.c b/com32/chain/chain.c
index f4582530..30153c4d 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;