summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-11-16 15:32:10 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-11-16 15:32:10 +0000
commitfc05268e42be632cc4ab1c00b5918e2158317c10 (patch)
tree8e52cb6c691cfa73433eeadcbfed209cb00973b4 /src
parent723f2d34d64df4b782a6055ff2833e3ea485b896 (diff)
downloadxine-lib-fc05268e42be632cc4ab1c00b5918e2158317c10.tar.gz
xine-lib-fc05268e42be632cc4ab1c00b5918e2158317c10.tar.bz2
fix warning
CVS patchset: 5751 CVS date: 2003/11/16 15:32:10
Diffstat (limited to 'src')
-rw-r--r--src/input/input_http.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 24d70178a..d0a52310a 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -19,7 +19,7 @@
*
* input plugin for http network streams
*
- * $Id: input_http.c,v 1.72 2003/11/15 15:04:36 miguelfreitas Exp $
+ * $Id: input_http.c,v 1.73 2003/11/16 15:32:10 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -322,7 +322,8 @@ static void http_plugin_read_metainf (input_plugin_t *this_gen) {
char metadata_buf[255 * 16];
unsigned char len = 0;
char *title_end;
- char *songtitle, *radio;
+ char *songtitle;
+ const char *radio;
xine_event_t uevent;
xine_ui_data_t data;