aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ephy-debug.h')
-rw-r--r--lib/ephy-debug.h6
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