diff --git a/programs/develop/metcc/trunk/libc/string/strlen.c b/programs/develop/metcc/trunk/libc/string/strlen.c index e766a7dc41..08914d3e5f 100644 --- a/programs/develop/metcc/trunk/libc/string/strlen.c +++ b/programs/develop/metcc/trunk/libc/string/strlen.c @@ -2,6 +2,6 @@ int strlen(const char* string) { int i; i=0; - while (*string!++) i++; + while (*string++) i++; return i; }