diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 00:35:07 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 00:35:07 +0000 |
commit | 27cf4cc94874faf34c461e2f745a917d3c98b095 (patch) | |
tree | e199b95ef303e873c59d3d53993b27bc1dfadb2b /src/xine-engine/buffer.c | |
parent | 1edd2f2a81cbf1d5385f5a9f12bf8ff2c05c701d (diff) | |
download | xine-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/buffer.c')
-rw-r--r-- | src/xine-engine/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.c b/src/xine-engine/buffer.c index 4bf3f5fc9..c36e97877 100644 --- a/src/xine-engine/buffer.c +++ b/src/xine-engine/buffer.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: buffer.c,v 1.35 2004/03/03 20:09:16 mroi Exp $ + * $Id: buffer.c,v 1.36 2006/06/20 00:35:07 dgp85 Exp $ * * * contents: @@ -501,7 +501,7 @@ fifo_buffer_t *_x_fifo_buffer_new (int num_buffers, uint32_t buf_size) { fifo_buffer_t *this; int i; int alignment = 2048; - char *multi_buffer = NULL; + unsigned char *multi_buffer = NULL; this = xine_xmalloc (sizeof (fifo_buffer_t)); |