mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-22 02:45:11 -04:00
[misc] code cleanup
* Also fix WDK compilation issues
This commit is contained in:
parent
afec69c428
commit
55b7d5c2da
9 changed files with 39 additions and 34 deletions
|
@ -155,7 +155,7 @@ static __inline void ToUpper(char* str)
|
|||
{
|
||||
size_t i;
|
||||
for (i = 0; i < safe_strlen(str); i++)
|
||||
str[i] = toupper(str[i]);
|
||||
str[i] = (char)toupper(str[i]);
|
||||
}
|
||||
|
||||
BOOL GetOpticalMedia(IMG_SAVE* img_save)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue