[Scummvm-cvs-logs] SF.net SVN: scummvm:[39058] scummvm/trunk/common/debug.h

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sun Mar 1 23:09:46 CET 2009


Revision: 39058
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39058&view=rev
Author:   lordhoto
Date:     2009-03-01 22:09:46 +0000 (Sun, 01 Mar 2009)

Log Message:
-----------
Fix documentation, debug(C/N) prints to stdout not stderr.

Modified Paths:
--------------
    scummvm/trunk/common/debug.h

Modified: scummvm/trunk/common/debug.h
===================================================================
--- scummvm/trunk/common/debug.h	2009-03-01 22:03:37 UTC (rev 39057)
+++ scummvm/trunk/common/debug.h	2009-03-01 22:09:46 UTC (rev 39058)
@@ -112,13 +112,13 @@
 
 
 /**
- * Print a debug message to the text console (stderr).
+ * Print a debug message to the text console (stdout).
  * Automatically appends a newline.
  */
 void debug(const char *s, ...) GCC_PRINTF(1, 2);
 
 /**
- * Print a debug message to the text console (stderr), but only if
+ * Print a debug message to the text console (stdout), but only if
  * the specified level does not exceed the value of gDebugLevel.
  * As a rule of thumb, the more important the message, the lower the level.
  * Automatically appends a newline.
@@ -126,7 +126,7 @@
 void debug(int level, const char *s, ...) GCC_PRINTF(2, 3);
 
 /**
- * Print a debug message to the text console (stderr), but only if
+ * Print a debug message to the text console (stdout), but only if
  * the specified level does not exceed the value of gDebugLevel.
  * As a rule of thumb, the more important the message, the lower the level.
  * Does not append a newline.
@@ -134,7 +134,7 @@
 void debugN(int level, const char *s, ...) GCC_PRINTF(2, 3);
 
 /**
- * Print a debug message to the text console (stderr), but only if
+ * Print a debug message to the text console (stdout), but only if
  * the specified level does not exceed the value of gDebugLevel OR
  * if the specified special debug level is active.
  * As a rule of thumb, the more important the message, the lower the level.
@@ -145,7 +145,7 @@
 void debugC(int level, uint32 debugChannels, const char *s, ...) GCC_PRINTF(3, 4);
 
 /**
- * Print a debug message to the text console (stderr), but only if
+ * Print a debug message to the text console (stdout), but only if
  * the specified special debug level is active.
  * Automatically appends a newline.
  *


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