mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-12-25 14:49:50 +05:30
corrupter.c: remove superfluous parentheses
This commit is contained in:
parent
d69b3e8ea9
commit
5693f6de6c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user