mirror of
https://github.com/curl/curl.git
synced 2026-08-25 02:53:32 +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
|
|
@ -52,7 +52,7 @@ static size_t convert_lineends(struct SessionHandle *data,
|
|||
|
||||
/* sanity check */
|
||||
if((startPtr == NULL) || (size < 1)) {
|
||||
return(size);
|
||||
return size;
|
||||
}
|
||||
|
||||
if(data->state.prev_block_had_trailing_cr) {
|
||||
|
|
@ -114,9 +114,9 @@ static size_t convert_lineends(struct SessionHandle *data,
|
|||
/* tidy up by null terminating the now shorter data */
|
||||
*outPtr = '\0';
|
||||
|
||||
return(outPtr - startPtr);
|
||||
return (outPtr - startPtr);
|
||||
}
|
||||
return(size);
|
||||
return size;
|
||||
}
|
||||
#endif /* CURL_DO_LINEEND_CONV */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue