aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-29 22:38:55 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-29 22:38:55 +0800
commitf024b75b0fcbf91d0230ac47b8c44294316a13e2 (patch)
tree4168164d6b0e3b889f88d639b3999ffcc4259e8e /lib
parentb8b4901eba7cde41f0d7776f63ffac3eadf7e001 (diff)
downloadgsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar.gz
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar.bz2
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar.lz
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar.xz
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.tar.zst
gsoc2013-epiphany-f024b75b0fcbf91d0230ac47b8c44294316a13e2.zip
Use ISO style variable argument macros. Patch by Brian Cameron, part of
2004-05-29 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-debug.h: Use ISO style variable argument macros. Patch by Brian Cameron, part of bug #141319.
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-debug.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h
index 0be7f73bc..9326d935a 100644
--- a/lib/ephy-debug.h
+++ b/lib/ephy-debug.h
@@ -34,6 +34,16 @@ G_BEGIN_DECLS
#define DISABLE_PROFILING
#endif
+#ifdef G_HAVE_ISO_VARARGS
+#ifdef DISABLE_LOGGING
+#define LOG(msg, ...)
+#else
+#define LOG(msg, ...) \
+g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
+ "[ %s ] " msg, \
+ __FILE__ , __VA_ARGS__);
+#endif
+#elif defined(G_HAVE_GNUC_VARARGS)
#ifdef DISABLE_LOGGING
#define LOG(msg, args...)
#else
@@ -42,6 +52,7 @@ g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
"[ %s ] " msg, \
__FILE__ , ## args);
#endif
+#endif
#ifdef DISABLE_PROFILING
#define START_PROFILER(name)