diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-01-30 04:50:09 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-01-30 04:50:09 +0000 |
commit | 59abc29e69c4cd99f5fae6fe48a2db1a4661280b (patch) | |
tree | 4ac79cd494bae854cf1a9cb0522163f05185f75a | |
parent | 76de4ea6810f892d95a49a45ed788704227e8ab2 (diff) | |
download | ffmpeg-59abc29e69c4cd99f5fae6fe48a2db1a4661280b.tar.gz |
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
-rw-r--r-- | libavutil/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]); |