broke verlong lines

This commit is contained in:
Igor Zlatkovic 2002-10-31 15:59:24 +00:00
parent 082ff5039f
commit a42f397a6e

View File

@ -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();