summaryrefslogtreecommitdiffstats
path: root/crypto/sha/sha1dgst.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
committerBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
commite0f12c41de7f0de97842802936608d0b7b66c9cb (patch)
tree6371f4a53dade85d26a535e3b70bfffc0c67cb6a /crypto/sha/sha1dgst.c
parent5b5dd0c05714d540875f62378997dc816facb082 (diff)
Avoid some warnings (on silly compilers).
Diffstat (limited to 'crypto/sha/sha1dgst.c')
-rw-r--r--crypto/sha/sha1dgst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sha/sha1dgst.c b/crypto/sha/sha1dgst.c
index af8d9aed8a..66e885dd76 100644
--- a/crypto/sha/sha1dgst.c
+++ b/crypto/sha/sha1dgst.c
@@ -114,7 +114,7 @@ void SHA1_Init(SHA_CTX *c)
c->num=0;
}
-void SHA1_Update(SHA_CTX *c, const register unsigned char *data,
+void SHA1_Update(SHA_CTX *c, register const unsigned char *data,
unsigned long len)
{
register SHA_LONG *p;