Commit 5ee5a89a authored by Max Kellermann's avatar Max Kellermann

MusicChunk: use uint8_t instead of char

parent 1ad2475f
...@@ -85,7 +85,7 @@ struct music_chunk { ...@@ -85,7 +85,7 @@ struct music_chunk {
unsigned replay_gain_serial; unsigned replay_gain_serial;
/** the data (probably PCM) */ /** the data (probably PCM) */
char data[CHUNK_SIZE]; uint8_t data[CHUNK_SIZE];
#ifndef NDEBUG #ifndef NDEBUG
AudioFormat audio_format; AudioFormat audio_format;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment