summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1999-01-25 20:16:07 +0000
committermickey <mickey@openbsd.org>1999-01-25 20:16:07 +0000
commitef3c51eec4e722cc970929ee77df7c683d51ab25 (patch)
tree7363a65ba98eb320fe4fee7bc49b5b0ecfc9e14c
parentshut up gcc (diff)
downloadwireguard-openbsd-ef3c51eec4e722cc970929ee77df7c683d51ab25.tar.xz
wireguard-openbsd-ef3c51eec4e722cc970929ee77df7c683d51ab25.zip
mask one more debug printf out
-rw-r--r--sys/arch/hppa/stand/libsa/pdc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/stand/libsa/pdc.c b/sys/arch/hppa/stand/libsa/pdc.c
index e497cc290fc..ea4939bd915 100644
--- a/sys/arch/hppa/stand/libsa/pdc.c
+++ b/sys/arch/hppa/stand/libsa/pdc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pdc.c,v 1.6 1998/12/13 06:45:05 mickey Exp $ */
+/* $OpenBSD: pdc.c,v 1.7 1999/01/25 20:16:07 mickey Exp $ */
/*
* Copyright (c) 1998 Michael Shalayeff
@@ -213,7 +213,7 @@ iodcstrategy(devdata, rw, blk, size, buf, rsize)
xfer = min(dp->last_read - offset, size);
size -= xfer;
blk += xfer;
-#ifdef DEBUG
+#ifdef PDCDEBUG
if (debug)
printf("off=%d,xfer=%d,size=%d,blk=%d\n",
offset, xfer, size, blk);