summaryrefslogtreecommitdiff
path: root/src/input/input_mms.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 01:46:41 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 01:46:41 +0000
commit1db8aa445fdab9168bf649225feef804761132b1 (patch)
treeb466b9641d2083411567203cfc123198f26e7854 /src/input/input_mms.c
parentf945ec50a244d3a7ecee47e6535aeb02afb17930 (diff)
downloadxine-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_mms.c')
-rw-r--r--src/input/input_mms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_mms.c b/src/input/input_mms.c
index f71171dfc..e6aa63312 100644
--- a/src/input/input_mms.c
+++ b/src/input/input_mms.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_mms.c,v 1.61 2006/05/03 19:46:07 dsalt Exp $
+ * $Id: input_mms.c,v 1.62 2006/06/20 01:46:41 dgp85 Exp $
*
* mms input plugin based on work from major mms
*/
@@ -127,7 +127,7 @@ static buf_element_t *mms_plugin_read_block (input_plugin_t *this_gen,
buf->content = buf->mem;
buf->type = BUF_DEMUX_BLOCK;
- total_bytes = mms_plugin_read (this_gen, buf->content, todo);
+ total_bytes = mms_plugin_read (this_gen, (char*)buf->content, todo);
if (total_bytes != todo) {
buf->free_buffer (buf);