diff options
author | Dan Damian <dand@src.gnome.org> | 2003-03-08 04:32:58 +0800 |
---|---|---|
committer | Dan Damian <dand@src.gnome.org> | 2003-03-08 04:32:58 +0800 |
commit | 28d607eb84641c696b1d459f8906a389d169fc83 (patch) | |
tree | e8914adda9284dee19ceef1d1029e41903e9ff4d /lib | |
parent | ff8cb3c94a12a0c52f5d32c88598a018e7fa74c4 (diff) | |
download | gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar.gz gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar.bz2 gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar.lz gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar.xz gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.tar.zst gsoc2013-epiphany-28d607eb84641c696b1d459f8906a389d169fc83.zip |
lib/ephy-debug.h: (LOG) use named variable arguments for
compatibility with older gcc (2.95).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h index 934f2b658..6c87b8368 100644 --- a/lib/ephy-debug.h +++ b/lib/ephy-debug.h @@ -33,12 +33,12 @@ G_BEGIN_DECLS #endif #ifdef DISABLE_LOGGING -#define LOG(msg, ...) +#define LOG(msg, args...) #else -#define LOG(msg, ...) \ +#define LOG(msg, args...) \ g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ "[ %s ] " msg, \ - __FILE__, ##__VA_ARGS__); + __FILE__, ## args); #endif #ifdef DISABLE_PROFILING |