From 957f33b4ba0690a0ea9e3f631163080131009849 Mon Sep 17 00:00:00 2001 From: victor Date: Fri, 24 Nov 2006 22:06:08 +0000 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D0=BA?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://kolibrios.org@217 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/metcc/trunk/libc/string/strlen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }