aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-03-12 20:00:22 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-14 21:03:28 -0300
commitd012255ee1160527d6e406aede317cbb8d1f5730 (patch)
tree4d6fd942bc91a276463cad61c97ac8514bc03802 /src
parentd38b6933e2b7a156a1a800dc77e046104cfd57b0 (diff)
downloadrneovim-d012255ee1160527d6e406aede317cbb8d1f5730.tar.gz
rneovim-d012255ee1160527d6e406aede317cbb8d1f5730.tar.bz2
rneovim-d012255ee1160527d6e406aede317cbb8d1f5730.zip
Remove useless sizeof(uint32_t) == 4 test
Diffstat (limited to 'src')
-rw-r--r--src/blowfish.c8
1 files changed, 0 insertions, 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++;