mirror of
https://github.com/curl/curl.git
synced 2026-08-26 06:43:31 +03:00
checksrc: use space before paren in "return (expr);"
This commit is contained in:
parent
3dbe12a1e9
commit
a6b8fe2a5f
7 changed files with 27 additions and 16 deletions
|
|
@ -92,10 +92,10 @@ static int check_gss_err(struct SessionHandle *data,
|
|||
gss_release_buffer(&min_stat, &status_string);
|
||||
}
|
||||
failf(data, "GSS-API error: %s failed:\n%s", function, buf);
|
||||
return(1);
|
||||
return 1;
|
||||
}
|
||||
|
||||
return(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue