From 235e1b9bc4a3fc848b688daa857d49e953f7c135 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 24 Sep 2015 19:21:53 +0200 Subject: Replace () with (void) for proper function prototypes --- src/idevicerestore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/idevicerestore.h') 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); -- cgit v1.1-32-gdbae