first.c drop maybe redundant result cast?

This commit is contained in:
Viktor Szakats 2026-03-07 16:55:23 +01:00
parent dc8b2bb85d
commit ef768f45c8
No known key found for this signature in database

View file

@ -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;
}