From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix printk format warnings in osd_uld: drivers/scsi/osd/osd_uld.c:191: warning:format '%s' expects type 'char *', but argument 2 has type 'struct path' Also fix a small typo. Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> --- drivers/scsi/osd/osd_uld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20090423.orig/drivers/scsi/osd/osd_uld.c +++ linux-next-20090423/drivers/scsi/osd/osd_uld.c @@ -188,7 +188,7 @@ struct osd_dev *osduld_path_lookup(const error = kern_path(name, LOOKUP_FOLLOW, &path); if (error) { - OSD_ERR("path_lookup of %s faild=>%d\n", path, error); + OSD_ERR("path_lookup of %s failed=>%d\n", name, error); return ERR_PTR(error); } -- ~Randy -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html