1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-12-25 06:39:50 +05:30

corrupter.c: remove superfluous parentheses

This commit is contained in:
Intel A80486DX2-66 2024-11-17 23:38:59 +03:00
parent d69b3e8ea9
commit 5693f6de6c
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -24,7 +24,7 @@ static bool get_chance(uint16_t desired_chance) {
}
static bool is_line_ending(byte c) {
return (c == '\n' || c == '\r');
return c == '\n' || c == '\r';
}
Corrupter_Result* corrupt_file(Corrupter_Param* param) {