diff --git a/ChangeLog b/ChangeLog index c70f02835..5f70f6c5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index c70f02835..5f70f6c5b 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index c70f02835..5f70f6c5b 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index c70f02835..5f70f6c5b 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index c70f02835..5f70f6c5b 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index c70f02835..5f70f6c5b 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2003-08-28 Matthias Clasen + + * tests/patterntest.c (verbose): Fix a C99ism. (#120821, Thomas + Klausner) + 2003-08-25 Tor Lillqvist * glib/giowin32.c (read_thread): Avoid UNLOCKing the critical diff --git a/tests/patterntest.c b/tests/patterntest.c index 29f2938e4..f5fd7b224 100644 --- a/tests/patterntest.c +++ b/tests/patterntest.c @@ -30,10 +30,13 @@ static gboolean noisy = FALSE; static void verbose (const gchar *format, ...) { + gchar *msg; va_list args; + va_start (args, format); - gchar *msg = g_strdup_vprintf (format, args); + msg = g_strdup_vprintf (format, args); va_end (args); + if (noisy) g_print (msg); g_free (msg);