Forráskód Böngészése

ubuntu's gcc 4.6x warning fix, bugreport:5232 credits to gepard

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15435 54d463be-8e91-2dee-dedb-b68131a5f0ec
shennetsind 13 éve
szülő
commit
5024a18fce
1 módosított fájl, 8 hozzáadás és 4 törlés
  1. 8 4
      src/map/script.c

+ 8 - 4
src/map/script.c

@@ -12730,8 +12730,10 @@ BUILDIN_FUNC(strtoupper)
 	
 	output = (char*)aMallocA(strlen(str) + 1);
 
-	while(str[i] != '\0')
-		output[i++] = TOUPPER(str[i]);
+	while(str[i] != '\0') {
+		i = i + 1;
+		output[i] = TOUPPER(str[i]);
+	}
 	output[i] = '\0';
 
 	script_pushstr(st, output);
@@ -12749,8 +12751,10 @@ BUILDIN_FUNC(strtolower)
 	
 	output = (char*)aMallocA(strlen(str) + 1);
 
-	while(str[i] != '\0')
-		output[i++] = TOLOWER(str[i]);
+	while(str[i] != '\0') {
+		i = i + 1;
+		output[i] = TOLOWER(str[i]);
+	}
 	output[i] = '\0';
 
 	script_pushstr(st, output);