summaryrefslogtreecommitdiff
path: root/testThreadsWin32.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2012-09-11 13:26:36 +0800
committerDaniel Veillard <veillard@redhat.com>2012-09-11 13:26:36 +0800
commitf8e3db0445a1bc8cfe3f77326b07ec161482caa2 (patch)
treed58aad0a8629f897a8272b9a040a9416d46bb446 /testThreadsWin32.c
parent429d3a0aae2eda7ba9451f9c9f8523c61cc0368b (diff)
downloadlibxml2-f8e3db0445a1bc8cfe3f77326b07ec161482caa2.tar.gz
Big space and tab cleanup
Remove all space before tabs and space and tabs at end of lines.
Diffstat (limited to 'testThreadsWin32.c')
-rw-r--r--testThreadsWin32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testThreadsWin32.c b/testThreadsWin32.c
index 6ed702e5..3d1a5ba2 100644
--- a/testThreadsWin32.c
+++ b/testThreadsWin32.c
@@ -104,7 +104,7 @@ main()
for (i = 0; i < num_threads; i++)
{
DWORD useless;
- tid[i] = CreateThread(NULL, 0,
+ tid[i] = CreateThread(NULL, 0,
thread_specific_data, testfiles[i], 0, &useless);
if (tid[i] == NULL)
{
@@ -113,7 +113,7 @@ main()
}
}
- if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED)
+ if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED)
perror ("WaitForMultipleObjects failed");
for (i = 0; i < num_threads; i++)
@@ -129,7 +129,7 @@ main()
xmlCatalogCleanup();
for (i = 0; i < num_threads; i++) {
- if (results[i] != (DWORD) Okay)
+ if (results[i] != (DWORD) Okay)
printf("Thread %d handling %s failed\n", i, testfiles[i]);
}
}