From 5822e4ddf61fc5be97c6d87cd722465a55f8ad9b Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 2 Mar 2006 23:56:03 +0000 Subject: Fix compilation error with MSVC. (#333115) 2006-03-03 Tor Lillqvist * pango/pangowin32-private.h (PING): Fix compilation error with MSVC. (#333115) --- ChangeLog | 5 +++++ pango/pangowin32-private.h | 6 ++++-- 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 + + * pango/pangowin32-private.h (PING): Fix compilation error with + MSVC. (#333115) + 2006-03-01 Tor Lillqvist * 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 */ -- cgit v1.2.1