From d012255ee1160527d6e406aede317cbb8d1f5730 Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Wed, 12 Mar 2014 20:00:22 -0300 Subject: [PATCH] Remove useless sizeof(uint32_t) == 4 test --- src/blowfish.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/blowfish.c b/src/blowfish.c index acf01b9a46..f032389ba4 100644 --- a/src/blowfish.c +++ b/src/blowfish.c @@ -461,14 +461,6 @@ static int bf_self_test(void) { int i, bn; int err = 0; block8 bk; - uint32_t ui = 0xffffffffUL; - - /* We can't simply use sizeof(uint32_t), it would generate a compiler - * warning. */ - if (ui != 0xffffffffUL || ui + 1 != 0) { - err++; - EMSG(_("E820: sizeof(uint32_t) != 4")); - } if (!bf_check_tables(ipa, sbi, 0x6ffa520a)) err++;