md32_common.h: fix copy-n-paste typo. The typo was present in 098 only.
authorAndy Polyakov <appro@openssl.org>
Mon, 29 Mar 2010 11:23:11 +0000 (11:23 +0000)
committerAndy Polyakov <appro@openssl.org>
Mon, 29 Mar 2010 11:23:11 +0000 (11:23 +0000)
crypto/md32_common.h

index 606aea6b9da282074907d402eb06a1abbb698c9d..e0deb78015a5266c561c36416e423a80166f3030 100644 (file)
 # if defined(__GNUC__) && __GNUC__>=2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
 #  if defined(__s390x__)
 #   define HOST_c2l(c,l)       ({ asm ("lrv    %0,%1"                  \
-                                  :"=d"(l) :"m"(*(const unsigned int *)(c));\
+                                  :"=d"(l) :"m"(*(const unsigned int *)(c)));\
                                   (c)+=4; (l);                         })
 #   define HOST_l2c(l,c)       ({ asm ("strv   %1,%0"                  \
                                   :"=m"(*(unsigned int *)(c)) :"d"(l));\