summaryrefslogtreecommitdiff
path: root/src/input/input_pvr.c
diff options
context:
space:
mode:
authorRocky Bernstein <rockyb@users.sourceforge.net>2004-07-20 00:50:10 +0000
committerRocky Bernstein <rockyb@users.sourceforge.net>2004-07-20 00:50:10 +0000
commit2bb0f28dc8252b31f496f0e5bb9b590391e1b129 (patch)
tree221f41790ccd7aebb8f198660a10ae92d700e1ee /src/input/input_pvr.c
parent389adc46d80045a1de20d60217b57dd5707311dd (diff)
downloadxine-lib-2bb0f28dc8252b31f496f0e5bb9b590391e1b129.tar.gz
xine-lib-2bb0f28dc8252b31f496f0e5bb9b590391e1b129.tar.bz2
Add const to get_identifier return type since that's n fact what it
is. Should protect against a plugin returning a malloc'd variable for example. CVS patchset: 6821 CVS date: 2004/07/20 00:50:10
Diffstat (limited to 'src/input/input_pvr.c')
-rw-r--r--src/input/input_pvr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c
index 0cbffd47d..25b069894 100644
--- a/src/input/input_pvr.c
+++ b/src/input/input_pvr.c
@@ -38,7 +38,7 @@
* usage:
* xine pvr:/<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age>
*
- * $Id: input_pvr.c,v 1.46 2004/06/13 21:28:56 miguelfreitas Exp $
+ * $Id: input_pvr.c,v 1.47 2004/07/20 00:50:11 rockyb Exp $
*/
/**************************************************************************
@@ -1514,7 +1514,7 @@ static char *pvr_class_get_description (input_class_t *this_gen) {
return _("WinTV-PVR 250/350 input plugin");
}
-static char *pvr_class_get_identifier (input_class_t *this_gen) {
+static const char *pvr_class_get_identifier (input_class_t *this_gen) {
return "pvr";
}