summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2000-02-13 10:56:42 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2000-02-13 10:56:42 +0000
commit98b4a8e30ae23331ad90ae7e25b13abc568d7766 (patch)
tree0a0c59ee1a4c4342c213ca5934aa3ceafdc380b1 /sys
parent60732345fdd2909e333df712605a3e995aa750dc (diff)
%u for unsigned
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/gdt_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/gdt_common.c b/sys/dev/ic/gdt_common.c
index f409289e311..58ff4f729cd 100644
--- a/sys/dev/ic/gdt_common.c
+++ b/sys/dev/ic/gdt_common.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gdt_common.c,v 1.2 2000/02/12 09:45:49 niklas Exp $ */
+/* $OpenBSD: gdt_common.c,v 1.3 2000/02/13 10:56:41 niklas Exp $ */
/*
* Copyright (c) 1999, 2000 Niklas Hallqvist. All rights reserved.
@@ -555,7 +555,7 @@ gdt_scsi_cmd(xs)
}
if (blockno >= gdt->sc_hdr[target].hd_size ||
blockno + blockcnt > gdt->sc_hdr[target].hd_size) {
- printf("%s: out of bounds %d-%d >= %d\n",
+ printf("%s: out of bounds %u-%u >= %u\n",
gdt->sc_dev.dv_xname, blockno, blockcnt,
gdt->sc_hdr[target].hd_size);
xs->error = XS_DRIVER_STUFFUP;