summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-04-25 17:26:26 +0100
committerGravatar Martin Szulecki2013-04-25 17:26:26 +0100
commit927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a (patch)
treebdc81939255cdabcb7c4fb969e29305f2cd62b07 /src
parent8ae2368031ac51065b569003209aae267b95d5b2 (diff)
downloadlibimobiledevice-927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a.tar.gz
libimobiledevice-927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a.tar.bz2
installation_proxy: Silence compiler warnings about thread_t pointer assignments
Diffstat (limited to 'src')
-rw-r--r--src/installation_proxy.c4
-rw-r--r--src/notification_proxy.c4
2 files changed, 4 insertions, 4 deletions
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;
}