summaryrefslogtreecommitdiff
path: root/src/xine-engine/input_cache.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 00:35:07 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 00:35:07 +0000
commit27cf4cc94874faf34c461e2f745a917d3c98b095 (patch)
treee199b95ef303e873c59d3d53993b27bc1dfadb2b /src/xine-engine/input_cache.c
parent1edd2f2a81cbf1d5385f5a9f12bf8ff2c05c701d (diff)
downloadxine-lib-27cf4cc94874faf34c461e2f745a917d3c98b095.tar.gz
xine-lib-27cf4cc94874faf34c461e2f745a917d3c98b095.tar.bz2
Fix generic warnings.
CVS patchset: 8063 CVS date: 2006/06/20 00:35:07
Diffstat (limited to 'src/xine-engine/input_cache.c')
-rw-r--r--src/xine-engine/input_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/input_cache.c b/src/xine-engine/input_cache.c
index 465203ccb..ae921f3f5 100644
--- a/src/xine-engine/input_cache.c
+++ b/src/xine-engine/input_cache.c
@@ -22,7 +22,7 @@
* The goal of this input plugin is to reduce
* the number of calls to the real input plugin.
*
- * $Id: input_cache.c,v 1.10 2006/05/22 17:00:40 mshopf Exp $
+ * $Id: input_cache.c,v 1.11 2006/06/20 00:35:07 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -45,7 +45,7 @@ typedef struct {
input_plugin_t *main_input_plugin; /* original input plugin */
xine_stream_t *stream;
- uint8_t buf[BUFFER_SIZE];
+ char buf[BUFFER_SIZE];
int buf_len;
int buf_pos;