CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <[EMAIL PROTECTED]> 05/06/11 12:47:09
Modified files:
src : game.cpp
Log message:
added missing newline in error message
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/game.cpp.diff?tr1=1.253&tr2=1.254&r1=text&r2=text
Patches:
Index: wesnoth/src/game.cpp
diff -u wesnoth/src/game.cpp:1.253 wesnoth/src/game.cpp:1.254
--- wesnoth/src/game.cpp:1.253 Sat Jun 11 02:41:37 2005
+++ wesnoth/src/game.cpp Sat Jun 11 12:47:09 2005
@@ -1,4 +1,4 @@
-/* $Id: game.cpp,v 1.253 2005/06/11 02:41:37 Sirp Exp $ */
+/* $Id: game.cpp,v 1.254 2005/06/11 12:47:09 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -206,11 +206,11 @@
} else if(val == "--nosound") {
//handled elsewhere
} else if(val[0] == '-') {
- std::cerr << "unknown option: " << val << "\n";
+ std::cerr << "unknown option: " << val << std::endl;
throw config::error("unknown option");
} else {
- std::cerr << "Setting path using " << val;
+ std::cerr << "Setting path using " << val << std::endl;
if(val[0] == '/') {
game_config::path = val;
} else {