1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Fix type of copy_state in EBML parser to an enum variable.

This commit is contained in:
Joseph Wallace 2015-11-27 23:22:44 -05:00
parent dc263858a4
commit 8a09627d05

View File

@ -606,7 +606,7 @@ static int ebml_wrote(ebml_t *ebml, int len)
unsigned long long data_value; unsigned long long data_value;
unsigned long long track_number; unsigned long long track_number;
unsigned char flags; unsigned char flags;
int copy_state; ebml_parsing_state copy_state;
ebml->input_position += len; ebml->input_position += len;
end_of_buffer = ebml->input_buffer + ebml->input_position; end_of_buffer = ebml->input_buffer + ebml->input_position;