From: Daniel Stenberg Date: Mon, 12 Nov 2018 14:23:17 +0000 (+0100) Subject: nss: fix fallthrough comment to fix picky compiler warning X-Git-Tag: curl-7_63_0~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42fd235040095e77f7bef26ec7506ad0b3cd8039;p=thirdparty%2Fcurl.git nss: fix fallthrough comment to fix picky compiler warning --- diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c index a3d3e58bbe..9dceb9773f 100644 --- a/lib/vtls/nss.c +++ b/lib/vtls/nss.c @@ -2164,7 +2164,7 @@ static CURLcode nss_connect_common(struct connectdata *conn, int sockindex, if(!blocking) /* CURLE_AGAIN in non-blocking mode is not an error */ return CURLE_OK; - /* fall through */ + /* FALLTHROUGH */ default: return result; }