From a42f397a6e9bc6b9c0f6f58786732a1967b06f19 Mon Sep 17 00:00:00 2001 From: Igor Zlatkovic Date: Thu, 31 Oct 2002 15:59:24 +0000 Subject: [PATCH] broke verlong lines --- testThreadsWin32.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/testThreadsWin32.c b/testThreadsWin32.c index 111e007f..24f00064 100644 --- a/testThreadsWin32.c +++ b/testThreadsWin32.c @@ -104,7 +104,8 @@ main() for (i = 0; i < num_threads; i++) { DWORD useless; - tid[i] = CreateThread (NULL, 0, thread_specific_data, testfiles[i], 0, &useless); + tid[i] = CreateThread(NULL, 0, + thread_specific_data, testfiles[i], 0, &useless); if (tid[i] == NULL) { perror("CreateThread"); @@ -112,7 +113,8 @@ main() } } - if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED) perror ("WaitForMultipleObjects failed"); + if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED) + perror ("WaitForMultipleObjects failed"); for (i = 0; i < num_threads; i++) { @@ -126,8 +128,10 @@ main() } xmlCatalogCleanup(); - for (i = 0; i < num_threads; i++) - if (results[i] != (DWORD) Okay) printf("Thread %d handling %s failed\n", i, testfiles[i]); + for (i = 0; i < num_threads; i++) { + if (results[i] != (DWORD) Okay) + printf("Thread %d handling %s failed\n", i, testfiles[i]); + } } xmlCleanupParser();