mirror of
https://github.com/curl/curl.git
synced 2026-05-05 00:29:56 +03:00
first.c drop maybe redundant result cast?
This commit is contained in:
parent
dc8b2bb85d
commit
ef768f45c8
1 changed files with 1 additions and 1 deletions
|
|
@ -286,5 +286,5 @@ int main(int argc, const char **argv)
|
|||
|
||||
/* Regular program status codes are limited to 0..127 and 126 and 127 have
|
||||
* special meanings by the shell, so limit a normal return code to 125 */
|
||||
return (int)result <= 125 ? (int)result : 125;
|
||||
return result <= 125 ? result : 125;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue