From 927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 25 Apr 2013 17:26:26 +0100 Subject: installation_proxy: Silence compiler warnings about thread_t pointer assignments --- src/installation_proxy.c | 4 ++-- src/notification_proxy.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/installation_proxy.c b/src/installation_proxy.c index c49014d..b1dfeb4 100644 --- a/src/installation_proxy.c +++ b/src/installation_proxy.c @@ -105,7 +105,7 @@ instproxy_error_t instproxy_client_new(idevice_t device, lockdownd_service_descr instproxy_client_t client_loc = (instproxy_client_t) malloc(sizeof(struct instproxy_client_private)); client_loc->parent = plistclient; mutex_init(&client_loc->mutex); - client_loc->status_updater = NULL; + client_loc->status_updater = (thread_t)NULL; *client = client_loc; return INSTPROXY_E_SUCCESS; @@ -354,7 +354,7 @@ static void* instproxy_status_updater(void* arg) if (data->operation) { free(data->operation); } - data->client->status_updater = NULL; + data->client->status_updater = (thread_t)NULL; instproxy_unlock(data->client); free(data); diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 952e5f2..291c257 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -110,7 +110,7 @@ np_error_t np_client_new(idevice_t device, lockdownd_service_descriptor_t servic client_loc->parent = plistclient; mutex_init(&client_loc->mutex); - client_loc->notifier = NULL; + client_loc->notifier = (thread_t)NULL; *client = client_loc; return NP_E_SUCCESS; @@ -395,7 +395,7 @@ np_error_t np_set_notify_callback( np_client_t client, np_notify_cb_t notify_cb, property_list_service_client_t parent = client->parent; client->parent = NULL; thread_join(client->notifier); - client->notifier = NULL; + client->notifier = (thread_t)NULL; client->parent = parent; } -- cgit v1.1-32-gdbae