dri: Clarify comments on InfoMessageF and ErrorMessageF macros.
authorCarl Worth <cworth@cworth.org>
Sat, 4 Feb 2012 00:14:23 +0000 (16:14 -0800)
committerCarl Worth <cworth@cworth.org>
Thu, 9 Feb 2012 01:07:53 +0000 (17:07 -0800)
The description of ErrorMessageF was misleading in the case of
LIBGL_DEBUG being unset, (the previous comment could be understood to
mean the error should be printed, but the code does not print in this
case).

InfoMessageF previously had no comment at all.

Reviewed-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
src/glx/dri_common.c

index ed0b134f00b4a8ab10f2f693a8edfebaf2fc9c28..5096c1f587e50767147249096ca18eead95de30b 100644 (file)
 #define RTLD_GLOBAL 0
 #endif
 
+/**
+ * Print informational message to stderr if LIBGL_DEBUG is set to
+ * "verbose".
+ */
 _X_HIDDEN void
 InfoMessageF(const char *f, ...)
 {
@@ -63,7 +67,8 @@ InfoMessageF(const char *f, ...)
 }
 
 /**
- * Print error to stderr, unless LIBGL_DEBUG=="quiet".
+ * Print error message to stderr if LIBGL_DEBUG is set to anything but
+ * "quiet", (do nothing if LIBGL_DEBUG is unset).
  */
 _X_HIDDEN void
 ErrorMessageF(const char *f, ...)