removed a redundancy
This commit is contained in:
parent
5e38efcedc
commit
d37daec957
1 changed files with 1 additions and 6 deletions
7
main.c
7
main.c
|
@ -77,11 +77,6 @@ void set_polynomial()
|
|||
crc_set_polynomial(p);
|
||||
}
|
||||
|
||||
void set_big_endian()
|
||||
{
|
||||
crc_set_big_endian();
|
||||
}
|
||||
|
||||
void set_binary()
|
||||
{
|
||||
print_binary = 1;
|
||||
|
@ -99,7 +94,7 @@ void set_reflect()
|
|||
|
||||
void (*args_functions[])() =
|
||||
{args_print_help, print_license, set_input, start_at, set_polynomial,
|
||||
set_big_endian, set_binary, set_xor, set_reflect};
|
||||
crc_set_big_endian, set_binary, set_xor, set_reflect};
|
||||
|
||||
static void open_stream()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue