# HG changeset patch # User cehoyos # Date 1278152732 0 # Node ID 3b049f067bddfbb1134fc07210c05436f593244c # Parent 322e7096671dfc52589906d27bc09ef4cf2ebcf3 Fix warning "passing argument from incompatible pointer type". Patch by Eli Friedman, eli d friedman a gmail diff -r 322e7096671d -r 3b049f067bdd nutdec.c --- 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);