Silly error is silly.

This commit is contained in:
LemonBoy 2012-07-18 17:29:37 +02:00
parent 37d343e554
commit f808c16ec1
1 changed files with 1 additions and 1 deletions

2
bar.c
View File

@ -33,7 +33,7 @@ fillrect (int color, int x, int y, int width, int height)
size_t
wcslen_ (wchar_t *s) {
size_t len;
for (len = 0; *s; s++);
for (len = 0; *s; s++, len++);
return len;
}