Mercurial > libavformat.hg
diff nutdec.c @ 6229:3b049f067bdd libavformat
Fix warning "passing argument from incompatible pointer type".
Patch by Eli Friedman, eli d friedman a gmail
| author | cehoyos |
|---|---|
| date | Sat, 03 Jul 2010 10:25:32 +0000 |
| parents | eeb6e3c4c32b |
| children | a64b9fa63635 |
line wrap: on
line diff
--- a/nutdec.c Sat Jul 03 03:15:37 2010 +0000 +++ b/nutdec.c Sat Jul 03 10:25:32 2010 +0000 @@ -95,7 +95,7 @@ // start= url_ftell(bc) - 8; startcode= be2me_64(startcode); - startcode= ff_crc04C11DB7_update(0, &startcode, 8); + startcode= ff_crc04C11DB7_update(0, (uint8_t*)&startcode, 8); init_checksum(bc, ff_crc04C11DB7_update, startcode); size= ff_get_v(bc);
