diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-10-16 10:30:53 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-10-16 10:30:53 +0000 |
commit | 62e45c0d85d91b67b1e82e033d13b444295d279f (patch) | |
tree | f33150b462a407d728d4864df59f6aa140378b80 /sys/scsi | |
parent | 7641d3bc831bfb36faffefebd0c1afeee2fdafab (diff) |
#if SCSIDEBUG -> #ifdef SCSIDEBUG
matches the rest of the scsi code.
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/scsiconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index c503a5a10ef..a0ae4cbe940 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.183 2012/10/08 21:47:51 deraadt Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.184 2012/10/16 10:30:52 jsg Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -1106,7 +1106,7 @@ scsi_inqmatch(struct scsi_inquiry_data *inqbuf, const void *_base, continue; priority += len; -#if SCSIDEBUG +#ifdef SCSIDEBUG printf("scsi_inqmatch: %d/%d/%d <%s, %s, %s>\n", priority, match->type, match->removable, match->vendor, match->product, match->revision); |