diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-29 23:16:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-29 23:16:22 +0800 |
commit | 42eece2eb1dca73dff3ca9a917998b8f95233f2a (patch) | |
tree | f45017023e05f16d811baf2eee8097e877b96acc | |
parent | e59da95e2a74595bb63bf2c5880650c4ed7b1e08 (diff) | |
download | gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar.gz gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar.bz2 gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar.lz gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar.xz gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.tar.zst gsoc2013-epiphany-42eece2eb1dca73dff3ca9a917998b8f95233f2a.zip |
Revert varargs change, it doesn't work for LOG("Message") without
2004-05-29 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-debug.h:
Revert varargs change, it doesn't work for LOG("Message") without
arguments.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/ephy-debug.h | 11 |
2 files changed, 7 insertions, 11 deletions
@@ -2,6 +2,13 @@ * lib/ephy-debug.h: + Revert varargs change, it doesn't work for LOG("Message") without + arguments. + +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. diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h index 9326d935a..0be7f73bc 100644 --- a/lib/ephy-debug.h +++ b/lib/ephy-debug.h @@ -34,16 +34,6 @@ 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 @@ -52,7 +42,6 @@ g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ "[ %s ] " msg, \ __FILE__ , ## args); #endif -#endif #ifdef DISABLE_PROFILING #define START_PROFILER(name) |