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/pt.c | |
parent | 744645c0346324449f43323c246d39ca4bef546c (diff) | |
download | FreeBSD-src-09bd4b96031eb28e1f510c7fd8cb02e65daee9a0.zip FreeBSD-src-09bd4b96031eb28e1f510c7fd8cb02e65daee9a0.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sys/scsi/pt.c')
-rw-r--r-- | sys/scsi/pt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/pt.c b/sys/scsi/pt.c index dfa8829..c2a2a18 100644 --- a/sys/scsi/pt.c +++ b/sys/scsi/pt.c @@ -37,7 +37,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pt.c,v 1.28 1998/06/17 14:13:14 bde Exp $ + * $Id: pt.c,v 1.29 1998/07/04 22:30:24 julian Exp $ */ #include "opt_bounce.h" @@ -209,7 +209,7 @@ ptstart(unit, flags) bp, flags) == SUCCESSFULLY_QUEUED) { } else { - printf("pt%ld: oops not queued\n", unit); + printf("pt%lu: oops not queued\n", (u_long)unit); bp->b_flags |= B_ERROR; bp->b_error = EIO; biodone(bp); |