diff options
| author | 2013-02-28 02:17:27 +0100 | |
|---|---|---|
| committer | 2013-02-28 02:17:27 +0100 | |
| commit | 31f24dd31bdd84308799123c8508d211291bb21d (patch) | |
| tree | e06b5241d3c69cc29ebf38e57948815495b11aea /src/service.c | |
| parent | 4b8644d16731415058376164ab20569961fec99c (diff) | |
| download | libimobiledevice-31f24dd31bdd84308799123c8508d211291bb21d.tar.gz libimobiledevice-31f24dd31bdd84308799123c8508d211291bb21d.tar.bz2 | |
service: use correct int16_t instead of uint16_t for error codes
Diffstat (limited to 'src/service.c')
| -rw-r--r-- | src/service.c | 6 |
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 | */ |
| 106 | service_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) | 106 | 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) |
| 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 | } |
