From: Steve Holme Date: Thu, 6 Feb 2014 19:51:18 +0000 (+0000) Subject: tool_operate: Removed unused argument parameters from operate_do() X-Git-Tag: curl-7_36_0~210 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d10065c05a564760b8181a0e6e8ac09af52f78aa;p=curl tool_operate: Removed unused argument parameters from operate_do() --- 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 */