(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)
authordarkvater
Sat, 15 Jan 2005 10:04:04 +0000
changeset 1021 7d2009476253
parent 1020 1223cd937174
child 1022 9ea8ee93d6a9
(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)
players.c
--- a/players.c	Sat Jan 15 09:28:08 2005 +0000
+++ b/players.c	Sat Jan 15 10:04:04 2005 +0000
@@ -746,7 +746,7 @@
 }
 
 /* Return true if any cheat has been used, false otherwise */
-static CheatHasBeenUsed(void)
+static bool CheatHasBeenUsed(void)
 {
 	const Cheat* cht = (Cheat*) &_cheats;
 	const Cheat* cht_last = &cht[sizeof(_cheats) / sizeof(Cheat)];