ID: 317 - ipmi_fwum.c: fix typo

This commit is contained in:
Zdenek Styblik 2014-05-24 09:18:32 +02:00
parent 26da519310
commit 6d25903a0b

View File

@ -892,14 +892,14 @@ KfwumUploadFirmware(struct ipmi_intf *intf, unsigned char *pBuffer,
} }
if (rc == 0) { if (rc == 0) {
if ((address % 1024) == 0) { if ((address % 1024) == 0) {
KfwumShowProgress("Writting Firmware in Flash", KfwumShowProgress("Writing Firmware in Flash",
address, totalSize); address, totalSize);
} }
sequenceNumber++; sequenceNumber++;
} }
} while ((rc == 0) && (address < totalSize)); } while ((rc == 0) && (address < totalSize));
if (rc == 0) { if (rc == 0) {
KfwumShowProgress("Writting Firmware in Flash", KfwumShowProgress("Writing Firmware in Flash",
100, 100); 100, 100);
} }
return rc; return rc;