diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-01-25 20:16:08 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-01-25 20:16:08 +0000 |
commit | 3e7d892621e851af91efad90f8ad0b71a70b7324 (patch) | |
tree | a3c82ccb20071a584255985d4041ab046f597ff6 | |
parent | a57c3bc25765eed509c8b8c9b08607f7c09c9c17 (diff) |
mask one more debug printf out
-rw-r--r-- | sys/arch/hppa/stand/libsa/pdc.c | 4 |
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); |