1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-25 01:28:51 -05:00

nss: fix fallthrough comment to fix picky compiler warning

This commit is contained in:
Daniel Stenberg 2018-11-12 15:23:17 +01:00
parent f7fa04d7f3
commit 42fd235040
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -2164,7 +2164,7 @@ static CURLcode nss_connect_common(struct connectdata *conn, int sockindex,
if(!blocking) if(!blocking)
/* CURLE_AGAIN in non-blocking mode is not an error */ /* CURLE_AGAIN in non-blocking mode is not an error */
return CURLE_OK; return CURLE_OK;
/* fall through */ /* FALLTHROUGH */
default: default:
return result; return result;
} }