From: Matthias Clasen Date: Thu, 30 Oct 2003 23:17:57 +0000 (+0000) Subject: Remove the semicolon from the definition of g_once(), so that X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=4dbdd6e05e04e48acce0992231589363c528bed3;p=dana%2Fcg-glib.git 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. --- diff --git a/ChangeLog b/ChangeLog index 546eaada..2d69f7e2 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 546eaada..2d69f7e2 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 546eaada..2d69f7e2 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 546eaada..2d69f7e2 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 546eaada..2d69f7e2 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 546eaada..2d69f7e2 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 a69f1dd2..5db6be04 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