From 34dde379781ab666b3bd4e2588ebb74dd55af18e Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 12 Jan 2012 03:32:11 +0000 Subject: ubuntu's gcc 4.6x warning fix, bugreport:5232 credits to gepard git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15435 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/script.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/map/script.c b/src/map/script.c index 203973860..c1f2744b9 100644 --- a/src/map/script.c +++ b/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); -- cgit v1.2.3-60-g2f50