diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-11-12 15:23:17 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-11-12 15:23:17 +0100 |
commit | 42fd235040095e77f7bef26ec7506ad0b3cd8039 (patch) | |
tree | b39474d349c068079847b5f9bf4f6cdd0f8953aa /lib | |
parent | f7fa04d7f38fe5ff90518490280a9724cb9dd704 (diff) | |
download | curl-42fd235040095e77f7bef26ec7506ad0b3cd8039.tar.gz |
nss: fix fallthrough comment to fix picky compiler warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/nss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c index a3d3e58bb..9dceb9773 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; } |