[Spice-commits] common/spice_common.h

Alon Levy alon at kemper.freedesktop.org
Mon Nov 7 00:26:16 PST 2011


 common/spice_common.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 21a22bcbf11de063d1948e01b91e0eea0b747cdc
Author: Alon Levy <alevy at redhat.com>
Date:   Sun Nov 6 14:29:20 2011 +0200

    common/spice_common.h: red_printf_debug: fix wrong sign

diff --git a/common/spice_common.h b/common/spice_common.h
index 51c6a68..f6205a3 100644
--- a/common/spice_common.h
+++ b/common/spice_common.h
@@ -70,7 +70,7 @@
     if (debug_level == -1) {                                        \
         debug_level = getenv("SPICE_DEBUG_LEVEL") != NULL ? atoi(getenv("SPICE_DEBUG_LEVEL")) : 0;  \
     }                                                               \
-    if (debug >= debug_level) {                                     \
+    if (debug <= debug_level) {                                     \
         printf("%s: " format "\n", __FUNCTION__, ## __VA_ARGS__ );  \
     }                                                               \
 } while(0)


More information about the Spice-commits mailing list