summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-12-20 02:16:41 +0100
committerDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-12-20 02:16:41 +0100
commitf40e4009259a1f4ef827af483c1c6927f1b78121 (patch)
tree6bc0243c83ca1b582ef001008a96e7b832db14a6
parent26f54381780b0eb18c9779d1b08ee8540e5a411a (diff)
downloadxine-lib-f40e4009259a1f4ef827af483c1c6927f1b78121.tar.gz
xine-lib-f40e4009259a1f4ef827af483c1c6927f1b78121.tar.bz2
Fix constantness.
-rw-r--r--src/combined/demux_flac.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/combined/demux_flac.c b/src/combined/demux_flac.c
index ebba63701..fc638fe35 100644
--- a/src/combined/demux_flac.c
+++ b/src/combined/demux_flac.c
@@ -583,7 +583,7 @@ open_plugin (demux_class_t *class_gen,
}
break;
case METHOD_BY_EXTENSION: {
- char *ending, *mrl;
+ const char *ending, *mrl;
mrl = input->get_mrl (input);
@@ -715,22 +715,22 @@ open_plugin (demux_class_t *class_gen,
/* FLAC Demuxer class */
-static char *
+static const char *
get_description (demux_class_t *this_gen) {
return "FLAC demux plugin";
}
-static char *
+static const char *
get_identifier (demux_class_t *this_gen) {
return "FLAC";
}
-static char *
+static const char *
get_extensions (demux_class_t *this_gen) {
return "flac";
}
-static char *
+static const char *
get_mimetypes (demux_class_t *this_gen) {
return "audio/x-flac: flac: FLAC Audio;"
"audio/flac: flac: FLAC Audio;";