From 832185530724be971c28f3fb120eddc20cc6b518 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 18 Mar 2002 20:50:04 +0000 Subject: Formats that print the block number need to be changed from %u to %llu due to recent changes in bio_pblkno's type. --- sys/dev/mlx/mlx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/mlx') diff --git a/sys/dev/mlx/mlx.c b/sys/dev/mlx/mlx.c index 208328266cdf..fe2e92a71418 100644 --- a/sys/dev/mlx/mlx.c +++ b/sys/dev/mlx/mlx.c @@ -1777,8 +1777,8 @@ mlx_startio(struct mlx_softc *sc) blkcount = (MLX_BIO_LENGTH(bp) + MLX_BLKSIZE - 1) / MLX_BLKSIZE; if ((MLX_BIO_LBA(bp) + blkcount) > sc->mlx_sysdrive[driveno].ms_size) - device_printf(sc->mlx_dev, "I/O beyond end of unit (%u,%d > %u)\n", - MLX_BIO_LBA(bp), blkcount, sc->mlx_sysdrive[driveno].ms_size); + device_printf(sc->mlx_dev, "I/O beyond end of unit (%llu,%d > %u)\n", + MLX_BIO_LBA(bp), blkcount, sc->mlx_sysdrive[driveno].ms_size); /* * Build the I/O command. Note that the SG list type bits are set to zero, -- cgit v1.3