From 48e3432a639e5d50b68014e03f2c995ce63d40e0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 19 Mar 2012 20:04:45 +0100 Subject: test/run_input: use input_stream_*lock() --- test/run_input.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/run_input.c b/test/run_input.c index 0fe5a01f..676e4e61 100644 --- a/test/run_input.c +++ b/test/run_input.c @@ -53,7 +53,7 @@ dump_input_stream(struct input_stream *is) size_t num_read; ssize_t num_written; - g_mutex_lock(is->mutex); + input_stream_lock(is); /* wait until the stream becomes ready */ @@ -62,7 +62,7 @@ dump_input_stream(struct input_stream *is) if (!input_stream_check(is, &error)) { g_warning("%s", error->message); g_error_free(error); - g_mutex_unlock(is->mutex); + input_stream_unlock(is); return EXIT_FAILURE; } @@ -100,11 +100,11 @@ dump_input_stream(struct input_stream *is) if (!input_stream_check(is, &error)) { g_warning("%s", error->message); g_error_free(error); - g_mutex_unlock(is->mutex); + input_stream_unlock(is); return EXIT_FAILURE; } - g_mutex_unlock(is->mutex); + input_stream_unlock(is); return 0; } -- cgit v1.2.3