diff --git a/WINGs/string.c b/WINGs/string.c index d01437e0..70277c8a 100644 --- a/WINGs/string.c +++ b/WINGs/string.c @@ -140,7 +140,7 @@ char *wtokenjoin(char **list, int count) void wtokenfree(char **tokens, int count) { - while (--count) + while (count--) wfree(tokens[count]); wfree(tokens); }