Remove false &. Spotted by Albert Chin

2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>

        * configure.in: Remove false &. Spotted by Albert Chin
        <gtk-devel-list@thewrittenword.com>.
This commit is contained in:
Sebastian Wilhelmi 2003-06-11 13:34:40 +00:00 committed by Sebastian Wilhelmi
parent 1c5f52baa2
commit e9c1f8f412
7 changed files with 31 additions and 1 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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])],