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.c | |
parent | 9a53b8f2bc3c2ac366d208b620d6404e936e2a92 (diff) | |
download | idevicerestore-235e1b9bc4a3fc848b688daa857d49e953f7c135.tar.gz idevicerestore-235e1b9bc4a3fc848b688daa857d49e953f7c135.tar.bz2 |
Replace () with (void) for proper function prototypes
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index e9a50dd..36996cd 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -926,7 +926,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client) return result; } -struct idevicerestore_client_t* idevicerestore_client_new() +struct idevicerestore_client_t* idevicerestore_client_new(void) { struct idevicerestore_client_t* client = (struct idevicerestore_client_t*) malloc(sizeof(struct idevicerestore_client_t)); if (client == NULL) { |