Remove superfluous )' in the pthread_create in default libraries' test

This commit is contained in:
Hallvard Furuseth 1999-04-07 04:20:08 +00:00
parent d49de831ef
commit 14f4d60d49
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -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

View 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