[Scummvm-cvs-logs] SF.net SVN: scummvm:[46441] tools/branches/gsoc2009-gui/tool.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Sun Dec 20 21:34:17 CET 2009


Revision: 46441
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46441&view=rev
Author:   sev
Date:     2009-12-20 20:34:16 +0000 (Sun, 20 Dec 2009)

Log Message:
-----------
Fix double newlines at standard output

Modified Paths:
--------------
    tools/branches/gsoc2009-gui/tool.cpp

Modified: tools/branches/gsoc2009-gui/tool.cpp
===================================================================
--- tools/branches/gsoc2009-gui/tool.cpp	2009-12-20 20:22:15 UTC (rev 46440)
+++ tools/branches/gsoc2009-gui/tool.cpp	2009-12-20 20:34:16 UTC (rev 46441)
@@ -305,7 +305,7 @@
 
 // Standard print function
 void Tool::standardPrint(void * /*udata*/, const char *text) {
-	puts(text);
+	fputs(text, stdout);
 }
 
 // Standard progress function (does nothing)


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