diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-03-18 20:50:04 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-03-18 20:50:04 +0000 |
| commit | 832185530724be971c28f3fb120eddc20cc6b518 (patch) | |
| tree | acb4d699e1e767a9f6a9158424ba47cf32c2de85 /sys/dev/amr/amr.c | |
| parent | c3123ab6bf19498d4cb9ea771d0704a4baeb438e (diff) | |
Notes
Diffstat (limited to 'sys/dev/amr/amr.c')
| -rw-r--r-- | sys/dev/amr/amr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/amr/amr.c b/sys/dev/amr/amr.c index e8308c634bbd..a8fbd4fde4af 100644 --- a/sys/dev/amr/amr.c +++ b/sys/dev/amr/amr.c @@ -813,8 +813,8 @@ amr_bio_command(struct amr_softc *sc, struct amr_command **acp) /* we fill in the s/g related data when the command is mapped */ if ((bio->bio_pblkno + blkcount) > sc->amr_drive[driveno].al_size) - device_printf(sc->amr_dev, "I/O beyond end of unit (%u,%d > %u)\n", - bio->bio_pblkno, blkcount, sc->amr_drive[driveno].al_size); + device_printf(sc->amr_dev, "I/O beyond end of unit (%llu,%d > %u)\n", + bio->bio_pblkno, blkcount, sc->amr_drive[driveno].al_size); out: if (error != 0) { |
