From: Hallvard Furuseth Date: Wed, 7 Apr 1999 04:20:08 +0000 (+0000) Subject: Remove superfluous `)' in the `pthread_create in default libraries' test X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~230 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=14f4d60d49ad6087edae22bbcd7da0b4ef521aba;p=openldap Remove superfluous `)' in the `pthread_create in default libraries' test --- diff --git a/configure b/configure index 96b4d21034..227b770a54 100755 --- a/configure +++ b/configure @@ -4669,7 +4669,7 @@ int main(argc, argv) /* make sure pthread_create() isn't just a stub */ #if HAVE_PTHREADS_D4 - status = pthread_create(&t, pthread_attr_default, task, NULL)); + status = pthread_create(&t, pthread_attr_default, task, NULL); #else status = pthread_create(&t, NULL, task, NULL); #endif diff --git a/configure.in b/configure.in index fae97f0a39..0486db1c07 100644 --- a/configure.in +++ b/configure.in @@ -645,7 +645,7 @@ int main(argc, argv) /* make sure pthread_create() isn't just a stub */ #if HAVE_PTHREADS_D4 - status = pthread_create(&t, pthread_attr_default, task, NULL)); + status = pthread_create(&t, pthread_attr_default, task, NULL); #else status = pthread_create(&t, NULL, task, NULL); #endif