diff options
author | Christophe Fergeau | 2014-12-06 21:52:51 +0100 |
---|---|---|
committer | Christophe Fergeau | 2014-12-06 21:52:51 +0100 |
commit | 03c8f4fa8a41c11702ce10ce79c2a591f297c63e (patch) | |
tree | ad991c178a36c6fcb4ef1b72050bcad2b1bd46d8 /include | |
parent | 53eb963f8e6d607cca6b50381c10820a5e8357f4 (diff) | |
download | libimobiledevice-03c8f4fa8a41c11702ce10ce79c2a591f297c63e.tar.gz libimobiledevice-03c8f4fa8a41c11702ce10ce79c2a591f297c63e.tar.bz2 |
Replace () with (void) in function prototypes
() and (void) are 2 different things in C, and can cause gcc warnings:
error: function declaration isn't a prototype [-Werror=strict-prototypes]
idevice_error_t idevice_event_unsubscribe();
This commit replaces () with (void) in installed headers.
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/installation_proxy.h | 2 | ||||
-rw-r--r-- | include/libimobiledevice/libimobiledevice.h | 2 | ||||
-rw-r--r-- | include/libimobiledevice/mobilesync.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/libimobiledevice/installation_proxy.h b/include/libimobiledevice/installation_proxy.h index f76ee68..67307e2 100644 --- a/include/libimobiledevice/installation_proxy.h +++ b/include/libimobiledevice/installation_proxy.h @@ -279,7 +279,7 @@ instproxy_error_t instproxy_remove_archive(instproxy_client_t client, const char * * @return A new plist_t of type PLIST_DICT. */ -plist_t instproxy_client_options_new(); +plist_t instproxy_client_options_new(void); /** * Add one or more new key:value pairs to the given client_options. diff --git a/include/libimobiledevice/libimobiledevice.h b/include/libimobiledevice/libimobiledevice.h index b7a20d8..8705fc8 100644 --- a/include/libimobiledevice/libimobiledevice.h +++ b/include/libimobiledevice/libimobiledevice.h @@ -95,7 +95,7 @@ idevice_error_t idevice_event_subscribe(idevice_event_cb_t callback, void *user_ * * @return IDEVICE_E_SUCCESS on success or an error value when an error occured. */ -idevice_error_t idevice_event_unsubscribe(); +idevice_error_t idevice_event_unsubscribe(void); /* discovery (synchronous) */ diff --git a/include/libimobiledevice/mobilesync.h b/include/libimobiledevice/mobilesync.h index 3c0d576..b01e431 100644 --- a/include/libimobiledevice/mobilesync.h +++ b/include/libimobiledevice/mobilesync.h @@ -321,7 +321,7 @@ void mobilesync_anchors_free(mobilesync_anchors_t anchors); * * @return A new plist_t of type PLIST_DICT. */ -plist_t mobilesync_actions_new(); +plist_t mobilesync_actions_new(void); /** * Add one or more new key:value pairs to the given actions plist. |