From: Daniel Stenberg Date: Thu, 4 May 2017 13:49:38 +0000 (+0200) Subject: curl: fix warning "comma at end of enumerator list" X-Git-Tag: curl-7_54_1~167 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff108521589639e63caa5a589bb8ee80dea1eac6;p=thirdparty%2Fcurl.git curl: fix warning "comma at end of enumerator list" --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 5396ff86c3..315a9cf4a4 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -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; };