]> www.wagner.pp.ru Git - openssl-gost/engine.git/blobdiff - gosthash2012.c
tcl_tests: ca.try: Ignore openssl crl exit status for 'corrupted CRL' test
[openssl-gost/engine.git] / gosthash2012.c
index be1923ce94559ef2c67532c7227318468f62b014..91c2c9462518681df33e7536dba0b06e24dc73de 100644 (file)
@@ -69,7 +69,7 @@ static INLINE void add512(union uint512_u * RESTRICT x,
 
 # ifdef HAVE_ADDCARRY_U64
     for (i = 0; i < 8; i++)
-    CF = _addcarry_u64(CF, x->QWORD[i] , y->QWORD[i], &(x->QWORD[i]));
+        CF = _addcarry_u64(CF, x->QWORD[i] , y->QWORD[i], &(x->QWORD[i]));
 # else
     for (i = 0; i < 8; i++) {
         const unsigned long long left = x->QWORD[i];
@@ -90,7 +90,7 @@ static INLINE void add512(union uint512_u * RESTRICT x,
          */
         if (sum != left)
             CF = (sum < left);
-            x->QWORD[i] = sum;
+        x->QWORD[i] = sum;
     }
 # endif /* !__x86_64__ */
 #else /* __GOST3411_BIG_ENDIAN__ */