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:
meep-eep
2005-11-11 00:50:30 +00:00
parent ff9efd2182
commit 53e38dc102
+1 -1
View File
@@ -39,7 +39,7 @@ strupr (char *str)
ptr = str; ptr = str;
while (*ptr) while (*ptr)
{ {
*ptr = toupper (*ptr); *ptr = (char) toupper (*ptr);
ptr++; ptr++;
} }
return str; return str;