diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 17:27:14 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 17:27:14 +0100 |
commit | b5c1779c3c73028736cac94b06804277eff98ada (patch) | |
tree | 118691505ad1d978acd7d47a7e7353273dae584c | |
parent | 0ce6a9b20feb7ebeaa65404ecee131872d788779 (diff) | |
download | xine-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.c | 2 |
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); |