summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2011-10-17 23:00:29 +0200
committerAlexander Larsson <alexl@redhat.com>2011-10-17 23:00:29 +0200
commit52389bd01067284565b007bc156643d534282842 (patch)
treeecee5083d72d7130ee1ec222797254b9027504de
parentf3ac581713f7297b0bf33c77c47e9bf32961775f (diff)
Fix up testcase broken due to g_thread_new API change
-rw-r--r--gio/tests/win32-streams.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/tests/win32-streams.c b/gio/tests/win32-streams.c
index 36e98ae57..fd4b27b92 100644
--- a/gio/tests/win32-streams.c
+++ b/gio/tests/win32-streams.c
@@ -236,8 +236,8 @@ test_pipe_io (void)
reader_cancel = g_cancellable_new ();
main_cancel = g_cancellable_new ();
- writer = g_thread_new ("writer", writer_thread, NULL, TRUE, NULL);
- reader = g_thread_new ("reader", reader_thread, NULL, TRUE, NULL);
+ writer = g_thread_new ("writer", writer_thread, NULL);
+ reader = g_thread_new ("reader", reader_thread, NULL);
g_assert (DuplicateHandle (GetCurrentProcess (),
(HANDLE) (gintptr) _get_osfhandle (writer_pipe[0]),