summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-13 17:27:14 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-13 17:27:14 +0100
commitb5c1779c3c73028736cac94b06804277eff98ada (patch)
tree118691505ad1d978acd7d47a7e7353273dae584c
parent0ce6a9b20feb7ebeaa65404ecee131872d788779 (diff)
downloadxine-lib-b5c1779c3c73028736cac94b06804277eff98ada.tar.gz
xine-lib-b5c1779c3c73028736cac94b06804277eff98ada.tar.bz2
Use void* for the buffer parameter so that it doesn't get signedness warnings.
-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);