summaryrefslogtreecommitdiffstats
path: root/crypto/md5
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-06-07 16:07:57 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-06-07 16:07:57 +0000
commit0b99d4f1d1ad1f57b2a2eaf0548823802a8f7330 (patch)
tree653d8a0ccec46595f54e9f87376841dcbaff637f /crypto/md5
parent3c07d3a3d32aefaeebde24fdf8f046a8bce33b3c (diff)
Remove unnecessary casts and avoid some warnings with gcc 4.2.
Diffstat (limited to 'crypto/md5')
-rw-r--r--crypto/md5/md5test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/md5/md5test.c b/crypto/md5/md5test.c
index 0628053fa7..2b37190e32 100644
--- a/crypto/md5/md5test.c
+++ b/crypto/md5/md5test.c
@@ -97,12 +97,12 @@ static char *pt(unsigned char *md);
int main(int argc, char *argv[])
{
int i,err=0;
- unsigned char **P,**R;
+ char **P,**R;
char *p;
unsigned char md[MD5_DIGEST_LENGTH];
- P=(unsigned char **)test;
- R=(unsigned char **)ret;
+ P=test;
+ R=ret;
i=1;
while (*P != NULL)
{