tool_operate: Removed unused argument parameters from operate_do()
authorSteve Holme <steve_holme@hotmail.com>
Thu, 6 Feb 2014 19:51:18 +0000 (19:51 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 6 Feb 2014 20:52:12 +0000 (20:52 +0000)
src/tool_operate.c

index 5c1ea50..46d20bf 100644 (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 */