From d37daec95776da9f5b8a8f8bff77ebd5d10b7828 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sun, 15 Apr 2012 03:41:43 -0700 Subject: [PATCH] removed a redundancy --- main.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/main.c b/main.c index 8902c28..4179c00 100644 --- a/main.c +++ b/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() {