summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2006-03-02 23:56:03 +0000
committerTor Lillqvist <tml@src.gnome.org>2006-03-02 23:56:03 +0000
commit5822e4ddf61fc5be97c6d87cd722465a55f8ad9b (patch)
tree08422243e79f3a2497c0f1bf173cd02ec78ed3cf
parent6a281140641872ed0c6d323b06304cca57cdc9e1 (diff)
downloadpango-5822e4ddf61fc5be97c6d87cd722465a55f8ad9b.tar.gz
Fix compilation error with MSVC. (#333115)
2006-03-03 Tor Lillqvist <tml@novell.com> * pango/pangowin32-private.h (PING): Fix compilation error with MSVC. (#333115)
-rw-r--r--ChangeLog5
-rw-r--r--pango/pangowin32-private.h6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 93467224..1c083b95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-03 Tor Lillqvist <tml@novell.com>
+
+ * pango/pangowin32-private.h (PING): Fix compilation error with
+ MSVC. (#333115)
+
2006-03-01 Tor Lillqvist <tml@novell.com>
* pango/pango-context.c (update_metrics_from_items): Check the
diff --git a/pango/pangowin32-private.h b/pango/pangowin32-private.h
index d45a2768..465bb09e 100644
--- a/pango/pangowin32-private.h
+++ b/pango/pangowin32-private.h
@@ -36,14 +36,16 @@
(pango_win32_debug ? \
(g_print ("%s:%d ", __PRETTY_FUNCTION__, __LINE__), \
g_print printlist, \
- g_print ("\n")) : \
+ g_print ("\n"), \
+ 0) : \
0)
#else
#define PING(printlist) \
(pango_win32_debug ? \
(g_print ("%s:%d ", __FILE__, __LINE__), \
g_print printlist, \
- g_print ("\n")) : \
+ g_print ("\n"), \
+ 0) : \
0)
#endif
#else /* !PANGO_WIN32_DEBUGGING */