diff options
author | Dan Damian <dand@src.gnome.org> | 2003-03-09 02:13:33 +0800 |
---|---|---|
committer | Dan Damian <dand@src.gnome.org> | 2003-03-09 02:13:33 +0800 |
commit | 8129584f01c3756626d0b8f38284f197e1e2f822 (patch) | |
tree | 656158cc8bb55702a66858c17388fc067a94a8ae | |
parent | debc99b09a3217569e0835283384109fef182d7e (diff) | |
download | gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar.gz gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar.bz2 gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar.lz gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar.xz gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.tar.zst gsoc2013-epiphany-8129584f01c3756626d0b8f38284f197e1e2f822.zip |
A space by any other name.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/ephy-debug.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 |