Index: third_party/libxml/src/testThreadsWin32.c |
diff --git a/third_party/libxml/src/testThreadsWin32.c b/third_party/libxml/src/testThreadsWin32.c |
index 6ed702e5c188f6e6df26fa9defa8ff429e236d21..3d1a5ba23ad890d097a6b4d34c061109f2d76683 100644 |
--- a/third_party/libxml/src/testThreadsWin32.c |
+++ b/third_party/libxml/src/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]); |
} |
} |