Fix warning.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1981 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
+1
-1
@@ -39,7 +39,7 @@ strupr (char *str)
|
||||
ptr = str;
|
||||
while (*ptr)
|
||||
{
|
||||
*ptr = toupper (*ptr);
|
||||
*ptr = (char) toupper (*ptr);
|
||||
ptr++;
|
||||
}
|
||||
return str;
|
||||
|
||||
Reference in New Issue
Block a user