aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/ephy-debug.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d8617e3a..45e4a614d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-08 Dan Damian <dand@level7.ro>
+
+ * lib/ephy-debug.h: (LOG) Added a space before comma. Fixes a
+ compilation problem under gcc 2.95 with logging enabled.
+
2003-03-08 Iain <iain@prettypeople.org>
* lib/widgets/ephy-editable-toolbar.c: Make the context menu strings
diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h
index 6c87b8368..815741093 100644
--- a/lib/ephy-debug.h
+++ b/lib/ephy-debug.h
@@ -38,7 +38,7 @@ G_BEGIN_DECLS
#define LOG(msg, args...) \
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
"[ %s ] " msg, \
- __FILE__, ## args);
+ __FILE__ , ## args);
#endif
#ifdef DISABLE_PROFILING