diff options
author | Bodo Möller <bodo@openssl.org> | 1999-06-12 09:52:44 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-06-12 09:52:44 +0000 |
commit | e0f12c41de7f0de97842802936608d0b7b66c9cb (patch) | |
tree | 6371f4a53dade85d26a535e3b70bfffc0c67cb6a /crypto/des | |
parent | 5b5dd0c05714d540875f62378997dc816facb082 (diff) | |
download | openssl-new-e0f12c41de7f0de97842802936608d0b7b66c9cb.tar.gz |
Avoid some warnings (on silly compilers).
Diffstat (limited to 'crypto/des')
-rw-r--r-- | crypto/des/destest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/des/destest.c b/crypto/des/destest.c index d92fabdf3f..5a04fc9298 100644 --- a/crypto/des/destest.c +++ b/crypto/des/destest.c @@ -741,25 +741,25 @@ plain[8+4], plain[8+5], plain[8+6], plain[8+7]); if (lqret[0] != 0x327eba8dL) { printf("quad_cksum error, out[0] %08lx is not %08lx\n", - (unsigned long)lqret[0],0x327eba8dL); + (unsigned long)lqret[0],0x327eba8dUL); err=1; } if (lqret[1] != 0x201a49ccL) { printf("quad_cksum error, out[1] %08lx is not %08lx\n", - (unsigned long)lqret[1],0x201a49ccL); + (unsigned long)lqret[1],0x201a49ccUL); err=1; } if (lqret[2] != 0x70d7a63aL) { printf("quad_cksum error, out[2] %08lx is not %08lx\n", - (unsigned long)lqret[2],0x70d7a63aL); + (unsigned long)lqret[2],0x70d7a63aUL); err=1; } if (lqret[3] != 0x501c2c26L) { printf("quad_cksum error, out[3] %08lx is not %08lx\n", - (unsigned long)lqret[3],0x501c2c26L); + (unsigned long)lqret[3],0x501c2c26UL); err=1; } #endif |