1
0
Fork 0
forked from len0rd/rockbox

Fix last build warning from PP recording changes.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11801 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Barry Wardell 2006-12-18 13:20:27 +00:00
parent af15c6b266
commit 82db32ee17

View file

@ -2274,7 +2274,7 @@ static void encode_frame(char *buffer, struct enc_chunk_hdr *chunk)
memcpy(chunk->enc_data, CodedData.bbuf, chunk->enc_size); memcpy(chunk->enc_data, CodedData.bbuf, chunk->enc_size);
#else #else
/* swap frame to big endian */ /* swap frame to big endian */
byte_swap_frame32(chunk->enc_data, CodedData.bbuf, chunk->enc_size); byte_swap_frame32((uint32_t *)chunk->enc_data, CodedData.bbuf, chunk->enc_size);
#endif #endif
} /* encode_frame */ } /* encode_frame */