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.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/idevicerestore.c') 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) { -- cgit v1.1-32-gdbae