]> git.sur5r.net Git - openldap/commitdiff
Remove superfluous `)' in the `pthread_create in default libraries' test
authorHallvard Furuseth <hallvard@openldap.org>
Wed, 7 Apr 1999 04:20:08 +0000 (04:20 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Wed, 7 Apr 1999 04:20:08 +0000 (04:20 +0000)
configure
configure.in

index 96b4d2103424af15c5478862d87cb8f59ba96a93..227b770a54238bdbb3b9d1a80d3b006f92376dbc 100755 (executable)
--- 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
index fae97f0a399b7307018e7591d8fa9ecee2965fcb..0486db1c0793cb14f12d19164e5f81032e4be062 100644 (file)
@@ -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