summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-10-29 10:48:39 +0100
committerAndy Polyakov <appro@openssl.org>2014-10-29 10:55:15 +0100
commit34a136d90f0e424855dfc1b033c08d46d35b8e93 (patch)
tree4e32ce1bc01eb995c8ec6813903eb55dce0532e7 /crypto
parent42af669ff2754dfbe1dd55a0ab56664f82284dc4 (diff)
md32_common.h: address compiler warning in HOST_c2l.
Reviewed-by: Stephen Henson <steve@openssl.org> (cherry picked from commit d45282fc7cd9b97ed1479f8b8af713337fce57f5)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/md32_common.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h
index 1b84104354..6ac9b5dc7c 100644
--- a/crypto/md32_common.h
+++ b/crypto/md32_common.h
@@ -245,8 +245,7 @@
#define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++)))<<24), \
l|=(((unsigned long)(*((c)++)))<<16), \
l|=(((unsigned long)(*((c)++)))<< 8), \
- l|=(((unsigned long)(*((c)++))) ), \
- l)
+ l|=(((unsigned long)(*((c)++))) ) )
#endif
#ifndef HOST_l2c
#define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \
@@ -282,8 +281,7 @@
#define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++))) ), \
l|=(((unsigned long)(*((c)++)))<< 8), \
l|=(((unsigned long)(*((c)++)))<<16), \
- l|=(((unsigned long)(*((c)++)))<<24), \
- l)
+ l|=(((unsigned long)(*((c)++)))<<24) )
#endif
#ifndef HOST_l2c
#define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \