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

corrupter.c: fix type of corrupt_byte in declaration

This commit is contained in:
Intel A80486DX2-66 2024-11-28 22:28:17 +03:00
parent 6bc3de42b4
commit ba65b8e869
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -18,7 +18,7 @@ const size_t UINT16_MAX_PLUS_1 = UINT16_MAX + 1;
/* function definitions */
static bool get_chance(uint16_t desired_chance);
static bool is_line_ending(byte c);
static enum Interoperation_Result corrupt_byte(Interoperation_Input_Vars);
static void corrupt_byte(Interoperation_Input_Vars);
/* function implementations */
static bool get_chance(uint16_t desired_chance) {