Remove unnecessary casts and avoid some warnings with gcc 4.2.

This commit is contained in:
Dr. Stephen Henson
2007-06-07 16:07:57 +00:00
parent 3c07d3a3d3
commit 0b99d4f1d1
4 changed files with 12 additions and 12 deletions

View File

@@ -103,12 +103,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[RIPEMD160_DIGEST_LENGTH];
P=(unsigned char **)test;
R=(unsigned char **)ret;
P=test;
R=ret;
i=1;
while (*P != NULL)
{