Commit d10065c0 authored by Steve Holme's avatar Steve Holme
Browse files

tool_operate: Removed unused argument parameters from operate_do()

parent 456169f9
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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 */