MusicChunk: use uint8_t instead of char

This commit is contained in:
Max Kellermann 2013-10-28 17:08:14 +01:00
parent 1ad2475f9e
commit 5ee5a89a7f

View File

@ -85,7 +85,7 @@ struct music_chunk {
unsigned replay_gain_serial;
/** the data (probably PCM) */
char data[CHUNK_SIZE];
uint8_t data[CHUNK_SIZE];
#ifndef NDEBUG
AudioFormat audio_format;