mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Remove superfluous )' in the pthread_create in default libraries' test
This commit is contained in:
parent
d49de831ef
commit
14f4d60d49
2 changed files with 2 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue