summaryrefslogtreecommitdiffstats
path: root/src/service.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/service.c')
-rw-r--r--src/service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/service.c b/src/service.c
index c4743dc..48959b6 100644
--- a/src/service.c
+++ b/src/service.c
@@ -76,7 +76,7 @@ LIBIMOBILEDEVICE_API service_error_t service_client_new(idevice_t device, lockdo
76 return SERVICE_E_SUCCESS; 76 return SERVICE_E_SUCCESS;
77} 77}
78 78
79LIBIMOBILEDEVICE_API service_error_t service_client_factory_start_service(idevice_t device, const char* service_name, void **client, const char* label, int16_t (*constructor_func)(idevice_t, lockdownd_service_descriptor_t, void**), int16_t *error_code) 79LIBIMOBILEDEVICE_API service_error_t service_client_factory_start_service(idevice_t device, const char* service_name, void **client, const char* label, int32_t (*constructor_func)(idevice_t, lockdownd_service_descriptor_t, void**), int32_t *error_code)
80{ 80{
81 *client = NULL; 81 *client = NULL;
82 82
@@ -95,9 +95,9 @@ LIBIMOBILEDEVICE_API service_error_t service_client_factory_start_service(idevic
95 return SERVICE_E_START_SERVICE_ERROR; 95 return SERVICE_E_START_SERVICE_ERROR;
96 } 96 }
97 97
98 int16_t ec; 98 int32_t ec;
99 if (constructor_func) { 99 if (constructor_func) {
100 ec = (int16_t)constructor_func(device, service, client); 100 ec = (int32_t)constructor_func(device, service, client);
101 } else { 101 } else {
102 ec = service_client_new(device, service, (service_client_t*)client); 102 ec = service_client_new(device, service, (service_client_t*)client);
103 } 103 }