summaryrefslogtreecommitdiffstats
path: root/crypto/evp/digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/digest.c')
-rw-r--r--crypto/evp/digest.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/evp/digest.c b/crypto/evp/digest.c
index ec4d1779da..acada47fda 100644
--- a/crypto/evp/digest.c
+++ b/crypto/evp/digest.c
@@ -220,8 +220,7 @@ skip_to_init:
return ctx->digest->init(ctx);
}
-int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data,
- size_t count)
+int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count)
{
return ctx->update(ctx,data,count);
}