tree 7686ea80865e30f79fe0360540e1eb6cd9ac7485
parent 3a1c1d446b7cac6ddd8f6b1f3254ccffe87f1751
author [EMAIL PROTECTED] <[EMAIL PROTECTED]> Tue, 09 Aug 2005 14:17:03 -0700
committer James Bottomley <[EMAIL PROTECTED](none)> Fri, 12 Aug 2005 22:27:44 
-0500

[SCSI] fix warning in scsi_softirq

From: Andrew Morton <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
Signed-off-by: James Bottomley <[EMAIL PROTECTED]>

 drivers/scsi/scsi.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c
--- a/drivers/scsi/scsi.c
+++ b/drivers/scsi/scsi.c
@@ -811,7 +811,7 @@ static void scsi_softirq(struct softirq_
                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;
                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to