[SCSI] fix warning in scsi_softirq

From: Andrew Morton <akpm@osdl.org>

drivers/scsi/scsi.c: In function `scsi_softirq':
drivers/scsi/scsi.c:814: warning: int format, long int arg (arg 4)

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
akpm@osdl.org 2005-08-09 00:17:03 -07:00 committed by James Bottomley
parent 3a1c1d446b
commit 6becdff3bc
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ static void scsi_softirq(struct softirq_action *h)
if (disposition != SUCCESS &&
time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
dev_printk(KERN_ERR, &cmd->device->sdev_gendev,
"timing out command, waited %ds\n",
"timing out command, waited %lus\n",
wait_for/HZ);
disposition = SUCCESS;
}