more fixes for gcc4 warnings ...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6298 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-08-07 06:47:20 +00:00
parent b870642ee9
commit 82883698cc
2 changed files with 6 additions and 6 deletions

View File

@@ -260,7 +260,7 @@ void ast_md5_hash(char *output, char *input)
int x;
MD5Init(&md5);
MD5Update(&md5, input, strlen(input));
MD5Update(&md5, (unsigned char *)input, strlen(input));
MD5Final(digest, &md5);
ptr = output;
for (x=0; x<16; x++)