summaryrefslogtreecommitdiff
path: root/clutter/clutter-debug.h
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2009-08-03 13:58:52 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2009-08-03 14:25:09 +0100
commitcd35f3b384b645d171de49eee555363d4b2acc94 (patch)
tree500e86323576388b6c8de60cdfc148500b9440c7 /clutter/clutter-debug.h
parent94b35a4a5ee4fa86d837b2deb06fe849a2a68977 (diff)
downloadclutter-cd35f3b384b645d171de49eee555363d4b2acc94.tar.gz
[debug] Fix __GNUC__ typo
The right gcc define is __GNUC__ not __GNUC_. This typo had the side effect that we were using the non gcc specific debug macros leading to a less optmised CLUTTER_NOTE () than one could have dreamed of.
Diffstat (limited to 'clutter/clutter-debug.h')
-rw-r--r--clutter/clutter-debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clutter/clutter-debug.h b/clutter/clutter-debug.h
index 42fe7a8bb..77ee9674e 100644
--- a/clutter/clutter-debug.h
+++ b/clutter/clutter-debug.h
@@ -28,7 +28,7 @@ typedef enum {
#ifdef CLUTTER_ENABLE_DEBUG
-#ifdef __GNUC_
+#ifdef __GNUC__
#define CLUTTER_NOTE(type,x,a...) G_STMT_START { \
if (clutter_debug_flags & CLUTTER_DEBUG_##type) \
{ g_message ("[" #type "] " G_STRLOC ": " x, ##a); } \