tool_operate: Removed unused argument parameters from operate_do()

This commit is contained in:
Steve Holme 2014-02-06 19:51:18 +00:00
parent 456169f9e5
commit d10065c05a
1 changed files with 2 additions and 3 deletions

View File

@ -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 */