diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/idevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idevice.c b/src/idevice.c index 593a2ae..3d20069 100644 --- a/src/idevice.c +++ b/src/idevice.c | |||
| @@ -73,7 +73,7 @@ idevice_error_t idevice_event_subscribe(idevice_event_cb_t callback, void *user_ | |||
| 73 | int res = usbmuxd_subscribe(usbmux_event_cb, user_data); | 73 | int res = usbmuxd_subscribe(usbmux_event_cb, user_data); |
| 74 | if (res != 0) { | 74 | if (res != 0) { |
| 75 | event_cb = NULL; | 75 | event_cb = NULL; |
| 76 | debug_info("Error %d when subscribing usbmux event callback!", res); | 76 | debug_info("ERROR: usbmuxd_subscribe() returned %d!", res); |
| 77 | return IDEVICE_E_UNKNOWN_ERROR; | 77 | return IDEVICE_E_UNKNOWN_ERROR; |
| 78 | } | 78 | } |
| 79 | return IDEVICE_E_SUCCESS; | 79 | return IDEVICE_E_SUCCESS; |
| @@ -90,7 +90,7 @@ idevice_error_t idevice_event_unsubscribe() | |||
| 90 | event_cb = NULL; | 90 | event_cb = NULL; |
| 91 | int res = usbmuxd_unsubscribe(); | 91 | int res = usbmuxd_unsubscribe(); |
| 92 | if (res != 0) { | 92 | if (res != 0) { |
| 93 | debug_info("Error %d when unsubscribing usbmux event callback!", res); | 93 | debug_info("ERROR: usbmuxd_unsubscribe() returned %d!", res); |
| 94 | return IDEVICE_E_UNKNOWN_ERROR; | 94 | return IDEVICE_E_UNKNOWN_ERROR; |
| 95 | } | 95 | } |
| 96 | return IDEVICE_E_SUCCESS; | 96 | return IDEVICE_E_SUCCESS; |
