diff --git a/source/compiler/sc6.c b/source/compiler/sc6.c index 04c38f8..df6b61a 100644 --- a/source/compiler/sc6.c +++ b/source/compiler/sc6.c @@ -215,7 +215,7 @@ static char *stripwhitespace(char *str) { if (*str!='\0') { size_t len = strlen(str); - int i; + size_t i; for (i=len-1; i>=0; i--) { if (!isspace(str[i])) { str[i+1]='\0';