[SCSI] esas2r: Cleanup snprinf formatting of firmware version
authorBradley Grove <bgrove@attotech.com>
Tue, 1 Oct 2013 18:26:04 +0000 (14:26 -0400)
committerJames Bottomley <JBottomley@Parallels.com>
Fri, 25 Oct 2013 08:58:59 +0000 (09:58 +0100)
Signed-off-by: Bradley Grove <bgrove@attotech.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/esas2r/esas2r_vda.c

index 27e9721..30028e5 100644 (file)
@@ -310,9 +310,9 @@ static void esas2r_complete_vda_ioctl(struct esas2r_adapter *a,
                                le32_to_cpu(rsp->vda_version);
                        cfg->data.init.fw_build = rsp->fw_build;
 
-                       snprintf(buf, sizeof(buf), "%1d.%02d",
-                               (int)LOBYTE(le16_to_cpu(rsp->fw_release)),
-                               (int)HIBYTE(le16_to_cpu(rsp->fw_release)));
+                       snprintf(buf, sizeof(buf), "%1.1u.%2.2u",
+                                (int)LOBYTE(le16_to_cpu(rsp->fw_release)),
+                                (int)HIBYTE(le16_to_cpu(rsp->fw_release)));
 
                        memcpy(&cfg->data.init.fw_release, buf,
                               sizeof(cfg->data.init.fw_release));