diff options
author | Martin Szulecki | 2015-09-24 19:21:53 +0200 |
---|---|---|
committer | Martin Szulecki | 2015-09-24 19:21:53 +0200 |
commit | 235e1b9bc4a3fc848b688daa857d49e953f7c135 (patch) | |
tree | 37a110840858e4d20eff9217f61beb4d729104ec /src/idevicerestore.h | |
parent | 9a53b8f2bc3c2ac366d208b620d6404e936e2a92 (diff) | |
download | idevicerestore-235e1b9bc4a3fc848b688daa857d49e953f7c135.tar.gz idevicerestore-235e1b9bc4a3fc848b688daa857d49e953f7c135.tar.bz2 |
Replace () with (void) for proper function prototypes
Diffstat (limited to 'src/idevicerestore.h')
-rw-r--r-- | src/idevicerestore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idevicerestore.h b/src/idevicerestore.h index 3ec34a1..1e2124a 100644 --- a/src/idevicerestore.h +++ b/src/idevicerestore.h @@ -55,7 +55,7 @@ enum { typedef void (*idevicerestore_progress_cb_t)(int step, double step_progress, void* userdata); -struct idevicerestore_client_t* idevicerestore_client_new(); +struct idevicerestore_client_t* idevicerestore_client_new(void); void idevicerestore_client_free(struct idevicerestore_client_t* client); void idevicerestore_set_ecid(struct idevicerestore_client_t* client, unsigned long long ecid); @@ -69,7 +69,7 @@ void idevicerestore_set_error_stream(FILE* strm); void idevicerestore_set_debug_stream(FILE* strm); int idevicerestore_start(struct idevicerestore_client_t* client); -const char* idevicerestore_get_error(); +const char* idevicerestore_get_error(void); void usage(int argc, char* argv[]); int check_mode(struct idevicerestore_client_t* client); |