From 59abc29e69c4cd99f5fae6fe48a2db1a4661280b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 30 Jan 2008 04:50:09 +0000 Subject: fixing warning md5.c:150: warning: passing argument 2 of 'av_md5_update' from incompatible pointer type Originally committed as revision 11665 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/md5.c') diff --git a/libavutil/md5.c b/libavutil/md5.c index 03c09acbe7..ee39de1318 100644 --- a/libavutil/md5.c +++ b/libavutil/md5.c @@ -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]); -- cgit v1.2.3