[quake3-commits] r1984 - trunk/code/game
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat May 14 16:24:34 EDT 2011
Author: thilo
Date: 2011-05-14 16:24:34 -0400 (Sat, 14 May 2011)
New Revision: 1984
Modified:
trunk/code/game/bg_lib.c
Log:
Fix typecast
Modified: trunk/code/game/bg_lib.c
===================================================================
--- trunk/code/game/bg_lib.c 2011-05-14 14:55:54 UTC (rev 1983)
+++ trunk/code/game/bg_lib.c 2011-05-14 20:24:34 UTC (rev 1984)
@@ -241,7 +241,7 @@
if(c)
return NULL;
else
- return string;
+ return (char *) string;
}
char *strstr( const char *string, const char *strCharSet ) {
More information about the quake3-commits
mailing list