curl: fix warning "comma at end of enumerator list"
authorDaniel Stenberg <daniel@haxx.se>
Thu, 4 May 2017 13:49:38 +0000 (15:49 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 4 May 2017 13:49:38 +0000 (15:49 +0200)
src/tool_getparam.c

index 5396ff86c3c31a89026dd10416c3e6a3aa1c8e97..315a9cf4a4e7b79a16dfa58d3147b0d023d28687 100644 (file)
@@ -64,7 +64,7 @@ struct LongShort {
   enum {
     ARG_NONE,   /* stand-alone but not a boolean */
     ARG_BOOL,   /* accepts a --no-[name] prefix */
-    ARG_STRING, /* requires an argument */
+    ARG_STRING  /* requires an argument */
   } desc;
 };