0 --> NULL

This commit is contained in:
Thilo Schulz 2011-05-15 14:58:56 +00:00
parent 01ed417ee1
commit 558ed62771

View file

@ -242,7 +242,7 @@ char *strchr( const char *string, int c ) {
char *strrchr(const char *string, int c) char *strrchr(const char *string, int c)
{ {
const char *found = 0; const char *found = NULL;
while(*string) while(*string)
{ {