summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/demuxers/ebml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/ebml.c b/src/demuxers/ebml.c
index ac44aecd7..63cca27fd 100644
--- a/src/demuxers/ebml.c
+++ b/src/demuxers/ebml.c
@@ -185,7 +185,7 @@ static int ebml_read_elem_len(ebml_parser_t *ebml, uint64_t *len) {
}
-static int ebml_read_elem_data(ebml_parser_t *ebml, int8_t *buf, int64_t len) {
+static int ebml_read_elem_data(ebml_parser_t *ebml, void *buf, int64_t len) {
if (ebml->input->read(ebml->input, buf, len) != len) {
off_t pos = ebml->input->get_current_pos(ebml->input);