summaryrefslogtreecommitdiff
path: root/src/xine-utils/xine_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-utils/xine_buffer.h')
-rw-r--r--src/xine-utils/xine_buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/xine_buffer.h b/src/xine-utils/xine_buffer.h
index 6ef0e019a..1a9d682b0 100644
--- a/src/xine-utils/xine_buffer.h
+++ b/src/xine-utils/xine_buffer.h
@@ -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: xine_buffer.h,v 1.1 2002/12/15 01:47:59 holstsn Exp $
+ * $Id: xine_buffer.h,v 1.2 2002/12/24 00:59:36 holstsn Exp $
*
*
* generic dynamic buffer functions. The goals
@@ -79,7 +79,7 @@ void *xine_buffer_dup(void *buf);
*/
#define xine_buffer_copyin(buf,i,data,len) \
buf=_xine_buffer_copyin(buf,i,data,len)
-void *_xine_buffer_copyin(void *buf, int index, void *data, int len);
+void *_xine_buffer_copyin(void *buf, int index, const void *data, int len);
/*
* will copy len bytes out of buf+index into data.