fix warnings

This commit is contained in:
2016-01-07 15:17:21 +01:00
parent 23d9a24788
commit 5759ffd40b
7 changed files with 12 additions and 15 deletions

View File

@ -13,7 +13,7 @@ runestrchr(Rune *s, Rune c)
return s-1;
}
while(c1 = *s++)
while((c1 = *s++))
if(c1 == c0)
return s-1;
return 0;