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 738db02..959c9fb 100644
--- a/src/service.c
+++ b/src/service.c
@@ -103,7 +103,7 @@ service_error_t service_client_new(idevice_t device, lockdownd_service_descripto
103 * @return SERVICE_E_SUCCESS on success, or a SERVICE_E_* error code 103 * @return SERVICE_E_SUCCESS on success, or a SERVICE_E_* error code
104 * otherwise. 104 * otherwise.
105 */ 105 */
106service_error_t service_client_factory_start_service(idevice_t device, const char* service_name, void **client, const char* label, uint16_t (*constructor_func)(idevice_t, lockdownd_service_descriptor_t, void**), uint16_t *error_code) 106service_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)
107{ 107{
108 *client = NULL; 108 *client = NULL;
109 109
@@ -122,9 +122,9 @@ service_error_t service_client_factory_start_service(idevice_t device, const cha
122 return SERVICE_E_START_SERVICE_ERROR; 122 return SERVICE_E_START_SERVICE_ERROR;
123 } 123 }
124 124
125 uint16_t ec; 125 int16_t ec;
126 if (constructor_func) { 126 if (constructor_func) {
127 ec = (uint16_t)constructor_func(device, service, client); 127 ec = (int16_t)constructor_func(device, service, client);
128 } else { 128 } else {
129 ec = service_client_new(device, service, (service_client_t*)client); 129 ec = service_client_new(device, service, (service_client_t*)client);
130 } 130 }