# HG changeset patch # User michael # Date 1201668609 0 # Node ID 63e1f9c749dd250428ae347a852d02e82e695102 # Parent 4d19262ba3ff8969701174d3422b1207a4ed6878 fixing warning md5.c:150: warning: passing argument 2 of 'av_md5_update' from incompatible pointer type diff -r 4d19262ba3ff -r 63e1f9c749dd md5.c --- a/md5.c Mon Jan 28 17:23:57 2008 +0000 +++ b/md5.c Wed Jan 30 04:50:09 2008 +0000 @@ -147,7 +147,7 @@ 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]);