diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-12-24 12:19:52 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-12-24 12:19:52 +0000 |
| commit | 2fce833cd1469a5ca7f6b33313fde682eaed75e5 (patch) | |
| tree | aa86011ed3dc04da1d7b70a96ed5669033278df9 /sys/boot/pc98/libpc98/biosdisk.c | |
| parent | 85f5f3b435dd7ed3b5a1ba97cd70ac692354c353 (diff) | |
Notes
Diffstat (limited to 'sys/boot/pc98/libpc98/biosdisk.c')
| -rw-r--r-- | sys/boot/pc98/libpc98/biosdisk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/boot/pc98/libpc98/biosdisk.c b/sys/boot/pc98/libpc98/biosdisk.c index 2f18285a50d2..c2e7d6618cd3 100644 --- a/sys/boot/pc98/libpc98/biosdisk.c +++ b/sys/boot/pc98/libpc98/biosdisk.c @@ -906,11 +906,11 @@ bd_io(struct open_disk *od, daddr_t dblk, int blks, caddr_t dest, int write) } if (write) - DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p, VTOP(p), - result ? "failed" : "ok"); + DEBUG("Write %d sector(s) from %p (0x%x) to %lld %s", x, + p, VTOP(p), dblk, result ? "failed" : "ok"); else - DEBUG("%d sectors from %p (0x%x) to %lld %s", x, p, VTOP(p), dblk, - result ? "failed" : "ok"); + DEBUG("Read %d sector(s) from %lld to %p (0x%x) %s", x, + dblk, p, VTOP(p), result ? "failed" : "ok"); if (result) { return(-1); } |
