diff options
| author | Lennart Poettering <lennart@poettering.net> | 2010-05-08 01:50:05 +0200 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2010-05-08 01:50:05 +0200 | 
| commit | abb05d610d981fd8d4f3408a718da79f25a4e87e (patch) | |
| tree | e2a62962f8afe5ee3ed7005975e61dd8c62d18a3 | |
| parent | 4df443bbe682055a41e7c2248877dcc7682a69b8 (diff) | |
tests: fix once test
| -rw-r--r-- | src/tests/once-test.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/once-test.c b/src/tests/once-test.c index 37f3ac32..86a12479 100644 --- a/src/tests/once-test.c +++ b/src/tests/once-test.c @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) {          pa_zero(once);          for (i = 0; i < N_THREADS; i++) -            threads[i] = pa_thread_new(thread_func, pa_sprintf_malloc("Thread #%i", i+1)); +            threads[i] = pa_thread_new("once", thread_func, pa_sprintf_malloc("Thread #%i", i+1));          for (i = 0; i < N_THREADS; i++)              pa_thread_join(threads[i]);  | 
