mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08:00
tool_operate: Removed unused argument parameters from operate_do()
This commit is contained in:
parent
456169f9e5
commit
d10065c05a
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user