CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Jon Daniel <[EMAIL PROTECTED]> 05/01/23 01:13:24
Modified files:
src : multiplayer_client.cpp
Log message:
added default case to switch case statement to fix warnings with gcc
and xcode
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/multiplayer_client.cpp.diff?tr1=1.85&tr2=1.86&r1=text&r2=text
Patches:
Index: wesnoth/src/multiplayer_client.cpp
diff -u wesnoth/src/multiplayer_client.cpp:1.85
wesnoth/src/multiplayer_client.cpp:1.86
--- wesnoth/src/multiplayer_client.cpp:1.85 Wed Jan 19 21:25:10 2005
+++ wesnoth/src/multiplayer_client.cpp Sun Jan 23 01:13:23 2005
@@ -383,6 +383,8 @@
status = 1;
break;
}
+ default:
+ break;
}
}