summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2015-09-24 19:21:53 +0200
committerGravatar Martin Szulecki2015-09-24 19:21:53 +0200
commit235e1b9bc4a3fc848b688daa857d49e953f7c135 (patch)
tree37a110840858e4d20eff9217f61beb4d729104ec /src/idevicerestore.c
parent9a53b8f2bc3c2ac366d208b620d6404e936e2a92 (diff)
downloadidevicerestore-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.c2
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) {