From ed1d75bee937970656ef14394a693b09d9d256bb Mon Sep 17 00:00:00 2001 From: Anderson Lizardo Date: Wed, 12 Feb 2014 15:13:21 -0400 Subject: [PATCH] android/test-ipc: Use correct boolean values for glib functions --- android/test-ipc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/test-ipc.c b/android/test-ipc.c index 851b5fdf3..8dd53a1c6 100644 --- a/android/test-ipc.c +++ b/android/test-ipc.c @@ -264,8 +264,8 @@ static void execute_context(struct context *context) { g_main_loop_run(context->main_loop); - g_io_channel_shutdown(context->notif_io, true, NULL); - g_io_channel_shutdown(context->cmd_io, true, NULL); + g_io_channel_shutdown(context->notif_io, TRUE, NULL); + g_io_channel_shutdown(context->cmd_io, TRUE, NULL); g_io_channel_unref(context->cmd_io); g_io_channel_unref(context->notif_io); -- 2.47.3