Fix stupid last minute change.

This commit is contained in:
Fred L. Drake, Jr. 2002-04-29 17:10:26 +00:00
parent d29adbd972
commit 0767c2ce17

View File

@ -14,8 +14,8 @@
static int
xmlstrlen(const XML_Char *s)
{
assert(s != NULL);
int len = 0;
assert(s != NULL);
while (s[len] != 0)
++len;
return len;