tidy-up: drop parenthesis around return expression

Closes #15990
This commit is contained in:
Viktor Szakats 2025-01-13 18:52:32 +01:00
parent 06d4456a21
commit 5474d70c3e
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
34 changed files with 61 additions and 61 deletions

View file

@ -312,7 +312,7 @@ timediff_t Curl_pgrsLimitWaitTime(struct pgrs_dir *d,
if(actual < minimum) {
/* if it downloaded the data faster than the limit, make it wait the
difference */
return (minimum - actual);
return minimum - actual;
}
return 0;