Commit 2e621781 authored by michael's avatar michael

fixing warning

md5.c:150: warning: passing argument 2 of 'av_md5_update' from incompatible pointer type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11665 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dd721b94
......@@ -147,7 +147,7 @@ void av_md5_final(AVMD5 *ctx, uint8_t *dst){
while((ctx->len & 63)<56)
av_md5_update(ctx, "", 1);
av_md5_update(ctx, &finalcount, 8);
av_md5_update(ctx, (uint8_t*)&finalcount, 8);
for(i=0; i<4; i++)
((uint32_t*)dst)[i]= le2me_32(ctx->ABCD[3-i]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment