diff options
author | bde <bde@FreeBSD.org> | 1998-08-18 00:32:50 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-18 00:32:50 +0000 |
commit | 09bd4b96031eb28e1f510c7fd8cb02e65daee9a0 (patch) | |
tree | 06b5b642aeea9a9a24327add2f724aa180a02b2f /sys/scsi/scsi_ioctl.c | |
parent | 744645c0346324449f43323c246d39ca4bef546c (diff) | |
download | FreeBSD-src-09bd4b96031eb28e1f510c7fd8cb02e65daee9a0.zip FreeBSD-src-09bd4b96031eb28e1f510c7fd8cb02e65daee9a0.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sys/scsi/scsi_ioctl.c')
-rw-r--r-- | sys/scsi/scsi_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsi_ioctl.c b/sys/scsi/scsi_ioctl.c index 4d5b94c..c63de3a 100644 --- a/sys/scsi/scsi_ioctl.c +++ b/sys/scsi/scsi_ioctl.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. *End copyright * - * $Id: scsi_ioctl.c,v 1.30 1998/03/28 10:33:21 bde Exp $ + * $Id: scsi_ioctl.c,v 1.31 1998/06/07 17:12:49 dfr Exp $ * * */ @@ -260,7 +260,7 @@ struct proc *p, struct scsi_link *sc_link) if (cmd != SCIOCIDENTIFY && cmd != SCIOCGETDEVINFO&& !(flags & FWRITE)) return EACCES; - SC_DEBUG(sc_link,SDEV_DB2,("scsi_do_ioctl(0x%x)\n",cmd)); + SC_DEBUG(sc_link,SDEV_DB2, ("scsi_do_ioctl(0x%lx)\n", cmd)); switch(cmd) { case SCIOCCOMMAND: |