summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-02-19 23:20:19 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-02-19 23:20:19 +0000
commit7cb91f8dcbe3b01bfd3516b76ff62de3396f5e8d (patch)
tree282baf76f6f40dc09292e339f0be726987233206 /src
parentf5525b1f3a0a257c8cd7e844144c19fa6f631c28 (diff)
downloadxine-lib-7cb91f8dcbe3b01bfd3516b76ff62de3396f5e8d.tar.gz
xine-lib-7cb91f8dcbe3b01bfd3516b76ff62de3396f5e8d.tar.bz2
Fix warning about incompatible pointer type.
CVS patchset: 8600 CVS date: 2007/02/19 23:20:19
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index f5583a52f..600169121 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.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: xine.c,v 1.340 2006/12/22 16:38:15 klan Exp $
+ * $Id: xine.c,v 1.341 2007/02/19 23:20:19 dgp85 Exp $
*/
/*
@@ -2003,7 +2003,7 @@ void xine_vlog(xine_t *this, int buf, const char *format,
this->log_buffers[buf]->scratch_printf(this->log_buffers[buf], format, args);
}
-const char *const *xine_get_log (xine_t *this, int buf) {
+char *const *xine_get_log (xine_t *this, int buf) {
if(buf >= XINE_LOG_NUM)
return NULL;