diff options
author | akpm@osdl.org <akpm@osdl.org> | 2005-08-09 03:17:03 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-08-12 13:27:44 -0400 |
commit | 6becdff3bcaff1b89c392cf0630dcb5759704492 (patch) | |
tree | 7686ea80865e30f79fe0360540e1eb6cd9ac7485 /drivers/scsi/scsi.c | |
parent | 3a1c1d446b7cac6ddd8f6b1f3254ccffe87f1751 (diff) |
[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>
Diffstat (limited to 'drivers/scsi/scsi.c')
-rw-r--r-- | drivers/scsi/scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 4befbc275f94..a780546eda9c 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -811,7 +811,7 @@ static void scsi_softirq(struct softirq_action *h) | |||
811 | if (disposition != SUCCESS && | 811 | if (disposition != SUCCESS && |
812 | time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) { | 812 | time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) { |
813 | dev_printk(KERN_ERR, &cmd->device->sdev_gendev, | 813 | dev_printk(KERN_ERR, &cmd->device->sdev_gendev, |
814 | "timing out command, waited %ds\n", | 814 | "timing out command, waited %lus\n", |
815 | wait_for/HZ); | 815 | wait_for/HZ); |
816 | disposition = SUCCESS; | 816 | disposition = SUCCESS; |
817 | } | 817 | } |