summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1997-02-15 15:22:09 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1997-02-15 15:22:09 +0000
commit0bcbfe18ab63c55862fb458a038d674179583394 (patch)
tree7c1dd92e5a957a8551fa08ed3fe7d8adb67e71ae /sys/arch
parent10d88543e41bbb994ec6508329bdb8b2605b6e42 (diff)
Move the debug print into the ifdef DEBUG section.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme68k/mvme68k/disksubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/mvme68k/disksubr.c b/sys/arch/mvme68k/mvme68k/disksubr.c
index aae98353011..c8b61973d79 100644
--- a/sys/arch/mvme68k/mvme68k/disksubr.c
+++ b/sys/arch/mvme68k/mvme68k/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.10 1997/02/15 14:47:59 rahnds Exp $ */
+/* $OpenBSD: disksubr.c,v 1.11 1997/02/15 15:22:08 rahnds Exp $ */
/*
* Copyright (c) 1995 Dale Rahn.
@@ -611,8 +611,8 @@ cputobsdlabel(lp, clp)
oldcksum = nlp->d_checksum;
nlp->d_checksum = 0;
-printf("old chksum = %x new %x\n", oldcksum, dkcksum(nlp));
#ifdef DEBUG
+printf("old chksum = %x new %x\n", oldcksum, dkcksum(nlp));
printlp(nlp, "lp disklabel");
printclp(clp, "clp disklabel");
#endif