diff options
| author | 2014-10-05 16:51:03 +0200 | |
|---|---|---|
| committer | 2014-10-05 16:51:03 +0200 | |
| commit | 5072dea1373b7c4789a9ea1e65d05ea30acf41ed (patch) | |
| tree | 51bdd0584d727080fab86acd28bd4b360b2333bd /src/diagnostics_relay.c | |
| parent | 5552fa0fcc7501d3206fb3d3a64c1d04062ec53b (diff) | |
| download | libimobiledevice-5072dea1373b7c4789a9ea1e65d05ea30acf41ed.tar.gz libimobiledevice-5072dea1373b7c4789a9ea1e65d05ea30acf41ed.tar.bz2 | |
Convert int16_t macro error types into enum to improve debugging/type-checking
This simple change provides various benefits for developers like compile
time errors, better auto-completition in editors and the ability of a
debugger to show the constant instead of just the raw value.
Thanks to Aaron Burghardt for the proposal.
Diffstat (limited to 'src/diagnostics_relay.c')
| -rw-r--r-- | src/diagnostics_relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diagnostics_relay.c b/src/diagnostics_relay.c index 055f60a..825678a 100644 --- a/src/diagnostics_relay.c +++ b/src/diagnostics_relay.c | |||
| @@ -153,7 +153,7 @@ static diagnostics_relay_error_t diagnostics_relay_send(diagnostics_relay_client | |||
| 153 | return DIAGNOSTICS_RELAY_E_INVALID_ARG; | 153 | return DIAGNOSTICS_RELAY_E_INVALID_ARG; |
| 154 | 154 | ||
| 155 | diagnostics_relay_error_t ret = DIAGNOSTICS_RELAY_E_SUCCESS; | 155 | diagnostics_relay_error_t ret = DIAGNOSTICS_RELAY_E_SUCCESS; |
| 156 | idevice_error_t err; | 156 | property_list_service_error_t err; |
| 157 | 157 | ||
| 158 | err = property_list_service_send_xml_plist(client->parent, plist); | 158 | err = property_list_service_send_xml_plist(client->parent, plist); |
| 159 | if (err != PROPERTY_LIST_SERVICE_E_SUCCESS) { | 159 | if (err != PROPERTY_LIST_SERVICE_E_SUCCESS) { |
