From 558ed627719de312f75941fd381e53e17ff23037 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Sun, 15 May 2011 14:58:56 +0000 Subject: [PATCH] 0 --> NULL --- code/game/bg_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/bg_lib.c b/code/game/bg_lib.c index c9ef4715..2517e3c8 100644 --- a/code/game/bg_lib.c +++ b/code/game/bg_lib.c @@ -242,7 +242,7 @@ char *strchr( const char *string, int c ) { char *strrchr(const char *string, int c) { - const char *found = 0; + const char *found = NULL; while(*string) {