From 1db8aa445fdab9168bf649225feef804761132b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Tue, 20 Jun 2006 01:46:41 +0000 Subject: Fix generic warnings. CVS patchset: 8065 CVS date: 2006/06/20 01:46:41 --- src/input/input_pnm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input/input_pnm.c') 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); -- cgit v1.2.3