Remove false &. Spotted by Albert Chin
authorSebastian Wilhelmi <seppi@seppi.de>
Wed, 11 Jun 2003 13:34:40 +0000 (13:34 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Wed, 11 Jun 2003 13:34:40 +0000 (13:34 +0000)
2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>

        * configure.in: Remove false &. Spotted by Albert Chin
        <gtk-devel-list@thewrittenword.com>.

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

index 1ec928f..ca63791 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index 1ec928f..ca63791 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index 1ec928f..ca63791 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index 1ec928f..ca63791 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index 1ec928f..ca63791 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index 1ec928f..ca63791 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
+
+       * configure.in: Remove false &. Spotted by Albert Chin
+       <gtk-devel-list@thewrittenword.com>.
+
 2003-06-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib/giowin32.c: Fix indentation and spacing. Use
index fb3577e..34cf216 100644 (file)
@@ -1692,7 +1692,7 @@ int main () {
                        AC_MSG_RESULT($posix_priority_min/$posix_priority_max)
                        AC_MSG_CHECKING(for pthread_setschedparam)
                        AC_TRY_LINK([#include <pthread.h>],
-                         [pthread_t t; pthread_setschedparam(&t, 0, NULL)],
+                         [pthread_t t; pthread_setschedparam(t, 0, NULL)],
                          [AC_MSG_RESULT(yes)
                        AC_DEFINE_UNQUOTED(POSIX_MIN_PRIORITY,$posix_priority_min,[Minimum POSIX RT priority])
                           AC_DEFINE_UNQUOTED(POSIX_MAX_PRIORITY,$posix_priority_max,[Maximum POSIX RT priority])],