diff options
Diffstat (limited to 'crypto/md5/md5test.c')
-rw-r--r-- | crypto/md5/md5test.c | 6 |
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) { |