Remove the semicolon from the definition of g_once(), so that
authorMatthias Clasen <maclas@gmx.de>
Thu, 30 Oct 2003 23:17:57 +0000 (23:17 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 30 Oct 2003 23:17:57 +0000 (23:17 +0000)
Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>

* configure.in: Remove the semicolon from the definition of
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index 546eaadaaee91829df826ef771754a2655e2312b..2d69f7e285c62003ef1f52d80411ceda4e3c3abd 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 31 00:13:53 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * 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  <maclas@gmx.de>
 
        * tests/printf-test.c: Change the %e tests to not check for
index a69f1dd25ea2c54eee7fa6e5dc026f02018631c2..5db6be0412ef1dcb54d188930529a84be665f583 100644 (file)
@@ -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