diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-06 19:51:18 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-06 20:52:12 +0000 |
commit | d10065c05a564760b8181a0e6e8ac09af52f78aa (patch) | |
tree | bcb130916b91c1c88f2d16f4881a262327bdece9 /src | |
parent | 456169f9e55dfe376e353a4e144402444c1e5578 (diff) |
tool_operate: Removed unused argument parameters from operate_do()
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 5 |
1 files 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 */ |