diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 01:46:41 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 01:46:41 +0000 |
commit | 1db8aa445fdab9168bf649225feef804761132b1 (patch) | |
tree | b466b9641d2083411567203cfc123198f26e7854 /src/input/input_pnm.c | |
parent | f945ec50a244d3a7ecee47e6535aeb02afb17930 (diff) | |
download | xine-lib-1db8aa445fdab9168bf649225feef804761132b1.tar.gz xine-lib-1db8aa445fdab9168bf649225feef804761132b1.tar.bz2 |
Fix generic warnings.
CVS patchset: 8065
CVS date: 2006/06/20 01:46:41
Diffstat (limited to 'src/input/input_pnm.c')
-rw-r--r-- | src/input/input_pnm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index ffe6e66b4..cbf23c076 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -101,7 +101,7 @@ static buf_element_t *pnm_plugin_read_block (input_plugin_t *this_gen, buf->content = buf->mem; buf->type = BUF_DEMUX_BLOCK; - total_bytes = pnm_plugin_read (this_gen, buf->content, todo); + total_bytes = pnm_plugin_read (this_gen, (char*)buf->content, todo); if (total_bytes != todo) { buf->free_buffer (buf); |