mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-19 17:35:10 -04:00
[syslinux] fix a typo that reintroduced a possible crash
*a10a207790
reintroduced the crash that was fixed inad68ccfac9
due to the missing semicolon. * Also fix a minor output message issue * Closes #752
This commit is contained in:
parent
0abd745a87
commit
1a24e5bbd7
5 changed files with 10 additions and 8 deletions
|
@ -340,7 +340,7 @@ BOOL WriteFileWithRetry(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWr
|
|||
nNumberOfBytesToWrite, nTry < nNumRetries ? retry_msg : "");
|
||||
}
|
||||
else {
|
||||
uprintf(" Write error [0x%8X]%s", GetLastError(), nTry < nNumRetries ? retry_msg : "");
|
||||
uprintf(" Write error [0x%08X]%s", GetLastError(), nTry < nNumRetries ? retry_msg : "");
|
||||
}
|
||||
// If we can't reposition for the next run, just abort
|
||||
if (!readFilePointer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue