[Scummvm-cvs-logs] SF.net SVN: scummvm:[48609] tools

criezy at users.sourceforge.net criezy at users.sourceforge.net
Sat Apr 10 22:28:52 CEST 2010


Revision: 48609
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48609&view=rev
Author:   criezy
Date:     2010-04-10 20:28:48 +0000 (Sat, 10 Apr 2010)

Log Message:
-----------
Add missing new line at end of error message.

Modified Paths:
--------------
    tools/branches/branch-1-1-0/tool.cpp
    tools/trunk/tool.cpp

Modified: tools/branches/branch-1-1-0/tool.cpp
===================================================================
--- tools/branches/branch-1-1-0/tool.cpp	2010-04-10 19:52:29 UTC (rev 48608)
+++ tools/branches/branch-1-1-0/tool.cpp	2010-04-10 20:28:48 UTC (rev 48609)
@@ -73,7 +73,7 @@
 	parseExtraArguments();
 
 	if (!_arguments.empty() && _arguments.front()[0] == '-') {
-		std::string s = "Possibly ignored option " + _arguments.front() + ".";
+		std::string s = "Possibly ignored option " + _arguments.front() + ".\n";
 		print(s.c_str());
 	}
 

Modified: tools/trunk/tool.cpp
===================================================================
--- tools/trunk/tool.cpp	2010-04-10 19:52:29 UTC (rev 48608)
+++ tools/trunk/tool.cpp	2010-04-10 20:28:48 UTC (rev 48609)
@@ -80,7 +80,7 @@
 	parseExtraArguments();
 
 	if (!_arguments.empty() && _arguments.front()[0] == '-') {
-		std::string s = "Possibly ignored option " + _arguments.front() + ".";
+		std::string s = "Possibly ignored option " + _arguments.front() + ".\n";
 		print(s);
 	}
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list