From d10065c05a564760b8181a0e6e8ac09af52f78aa Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 6 Feb 2014 19:51:18 +0000 Subject: [PATCH] tool_operate: Removed unused argument parameters from operate_do() --- src/tool_operate.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tool_operate.c b/src/tool_operate.c index 5c1ea5034..46d20bf57 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -201,8 +201,7 @@ static CURLcode operate_init(struct Configurable *config) return CURLE_OK; } -static int operate_do(struct Configurable *config, int argc, - argv_item_t argv[]) +static int operate_do(struct Configurable *config) { char errorbuffer[CURL_ERROR_SIZE]; struct ProgressData progressbar; @@ -1853,7 +1852,7 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[]) } /* Perform the main operation */ else - result = operate_do(config, argc, argv); + result = operate_do(config); } /* Perform the cleanup */