diff options
| author | 2015-10-06 22:07:56 +0200 | |
|---|---|---|
| committer | 2015-10-06 22:07:56 +0200 | |
| commit | 2d5c2195bbdcc02774fa3f70a23759b3cb8b4aed (patch) | |
| tree | 586ddff4b41392937c3c84543e2a89dfc7d9d8ed /src | |
| parent | f268393d4e447ac901879bee751d7350c495fed2 (diff) | |
| download | libimobiledevice-2d5c2195bbdcc02774fa3f70a23759b3cb8b4aed.tar.gz libimobiledevice-2d5c2195bbdcc02774fa3f70a23759b3cb8b4aed.tar.bz2 | |
Add missing "(void)" to functions to match public headers
Diffstat (limited to 'src')
| -rw-r--r-- | src/idevice.c | 2 | ||||
| -rw-r--r-- | src/installation_proxy.c | 2 | ||||
| -rw-r--r-- | src/mobilesync.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/idevice.c b/src/idevice.c index ce27495..7c33cdd 100644 --- a/src/idevice.c +++ b/src/idevice.c | |||
| @@ -168,7 +168,7 @@ LIBIMOBILEDEVICE_API idevice_error_t idevice_event_subscribe(idevice_event_cb_t | |||
| 168 | return IDEVICE_E_SUCCESS; | 168 | return IDEVICE_E_SUCCESS; |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | LIBIMOBILEDEVICE_API idevice_error_t idevice_event_unsubscribe() | 171 | LIBIMOBILEDEVICE_API idevice_error_t idevice_event_unsubscribe(void) |
| 172 | { | 172 | { |
| 173 | event_cb = NULL; | 173 | event_cb = NULL; |
| 174 | int res = usbmuxd_unsubscribe(); | 174 | int res = usbmuxd_unsubscribe(); |
diff --git a/src/installation_proxy.c b/src/installation_proxy.c index e858e58..8bde154 100644 --- a/src/installation_proxy.c +++ b/src/installation_proxy.c | |||
| @@ -914,7 +914,7 @@ LIBIMOBILEDEVICE_API void instproxy_command_get_name(plist_t command, char** nam | |||
| 914 | } | 914 | } |
| 915 | } | 915 | } |
| 916 | 916 | ||
| 917 | LIBIMOBILEDEVICE_API plist_t instproxy_client_options_new() | 917 | LIBIMOBILEDEVICE_API plist_t instproxy_client_options_new(void) |
| 918 | { | 918 | { |
| 919 | return plist_new_dict(); | 919 | return plist_new_dict(); |
| 920 | } | 920 | } |
diff --git a/src/mobilesync.c b/src/mobilesync.c index 06fb1c1..d903cfe 100644 --- a/src/mobilesync.c +++ b/src/mobilesync.c | |||
| @@ -739,7 +739,7 @@ LIBIMOBILEDEVICE_API void mobilesync_anchors_free(mobilesync_anchors_t anchors) | |||
| 739 | anchors = NULL; | 739 | anchors = NULL; |
| 740 | } | 740 | } |
| 741 | 741 | ||
| 742 | LIBIMOBILEDEVICE_API plist_t mobilesync_actions_new() | 742 | LIBIMOBILEDEVICE_API plist_t mobilesync_actions_new(void) |
| 743 | { | 743 | { |
| 744 | return plist_new_dict(); | 744 | return plist_new_dict(); |
| 745 | } | 745 | } |
