mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:03:31 +03:00
gtls: fix indent to silence compiler warning
vtls/gtls.c: In function ‘Curl_gtls_data_pending’:
vtls/gtls.c:1429:3: error: this ‘if’ clause does not guard... [-Werror=misleading-indentation]
if(conn->proxy_ssl[connindex].session &&
^~
vtls/gtls.c:1433:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
return res;
This commit is contained in:
parent
8cb872df10
commit
8b4352658a
1 changed files with 1 additions and 1 deletions
|
|
@ -1430,7 +1430,7 @@ bool Curl_gtls_data_pending(const struct connectdata *conn, int connindex)
|
|||
0 != gnutls_record_check_pending(conn->proxy_ssl[connindex].session))
|
||||
res = TRUE;
|
||||
|
||||
return res;
|
||||
return res;
|
||||
}
|
||||
|
||||
static ssize_t gtls_send(struct connectdata *conn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue