diff options
| author | 2013-04-25 17:26:26 +0100 | |
|---|---|---|
| committer | 2013-04-25 17:26:26 +0100 | |
| commit | 927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a (patch) | |
| tree | bdc81939255cdabcb7c4fb969e29305f2cd62b07 /src/installation_proxy.c | |
| parent | 8ae2368031ac51065b569003209aae267b95d5b2 (diff) | |
| download | libimobiledevice-927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a.tar.gz libimobiledevice-927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a.tar.bz2 | |
installation_proxy: Silence compiler warnings about thread_t pointer assignments
Diffstat (limited to 'src/installation_proxy.c')
| -rw-r--r-- | src/installation_proxy.c | 4 |
1 files changed, 2 insertions, 2 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 | |||
| 105 | instproxy_client_t client_loc = (instproxy_client_t) malloc(sizeof(struct instproxy_client_private)); | 105 | instproxy_client_t client_loc = (instproxy_client_t) malloc(sizeof(struct instproxy_client_private)); |
| 106 | client_loc->parent = plistclient; | 106 | client_loc->parent = plistclient; |
| 107 | mutex_init(&client_loc->mutex); | 107 | mutex_init(&client_loc->mutex); |
| 108 | client_loc->status_updater = NULL; | 108 | client_loc->status_updater = (thread_t)NULL; |
| 109 | 109 | ||
| 110 | *client = client_loc; | 110 | *client = client_loc; |
| 111 | return INSTPROXY_E_SUCCESS; | 111 | return INSTPROXY_E_SUCCESS; |
| @@ -354,7 +354,7 @@ static void* instproxy_status_updater(void* arg) | |||
| 354 | if (data->operation) { | 354 | if (data->operation) { |
| 355 | free(data->operation); | 355 | free(data->operation); |
| 356 | } | 356 | } |
| 357 | data->client->status_updater = NULL; | 357 | data->client->status_updater = (thread_t)NULL; |
| 358 | instproxy_unlock(data->client); | 358 | instproxy_unlock(data->client); |
| 359 | free(data); | 359 | free(data); |
| 360 | 360 | ||
