From 4dbdd6e05e04e48acce0992231589363c528bed3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 30 Oct 2003 23:17:57 +0000 Subject: [PATCH] Remove the semicolon from the definition of g_once(), so that Fri Oct 31 00:13:53 2003 Matthias Clasen * configure.in: Remove the semicolon from the definition of g_once(), so that GPOINTER_TO_INT (g_once (...)) works. --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 2 +- 7 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 546eaadaa..2d69f7e28 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Fri Oct 31 00:13:53 2003 Matthias Clasen + + * configure.in: Remove the semicolon from the definition of + g_once(), so that GPOINTER_TO_INT (g_once (...)) works. + Tue Oct 28 23:38:30 2003 Matthias Clasen * tests/printf-test.c: Change the %e tests to not check for diff --git a/configure.in b/configure.in index a69f1dd25..5db6be041 100644 --- a/configure.in +++ b/configure.in @@ -2200,7 +2200,7 @@ _______EOF /* double checked locking can be used on this platform */ #define g_once(once, func, arg) \\ ((once)->status == G_ONCE_STATUS_READY ? (once)->retval : \\ - g_once_impl (once, func, arg)); + g_once_impl (once, func, arg)) #define g_static_mutex_get_mutex_impl_shortcut(mutex) \\ (*(mutex) ? *(mutex) : g_static_mutex_get_mutex_impl (mutex)) _______EOF