]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/evp/p_open.c
Remove parentheses of return.
[thirdparty/openssl.git] / crypto / evp / p_open.c
index b65bc74ed1424ec3343fe30d6802a79944634cd8..f2976f8a994aef1334958e17c7701ba5d1fa82b9 100644 (file)
@@ -58,7 +58,7 @@ int EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
     ret = 1;
  err:
     OPENSSL_clear_free(key, size);
-    return (ret);
+    return ret;
 }
 
 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
@@ -68,6 +68,6 @@ int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
     i = EVP_DecryptFinal_ex(ctx, out, outl);
     if (i)
         i = EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL);
-    return (i);
+    return i;
 }
 #endif