diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-06 18:13:10 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-06 18:13:10 +0000 |
commit | 6c4cd36cc5ced530a387327c4f6c576074424c6c (patch) | |
tree | 335cf36c9732583e317983a126ec508e2d08ce0b /src/xine-engine/plugin_catalog.h | |
parent | 75dc355377ef3cc01cfec10a1872ad64eee154ae (diff) | |
download | xine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.gz xine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.bz2 |
introduce "const"
fix some input plugins that would not copy the mrl on open
CVS patchset: 2623
CVS date: 2002/09/06 18:13:10
Diffstat (limited to 'src/xine-engine/plugin_catalog.h')
-rw-r--r-- | src/xine-engine/plugin_catalog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/plugin_catalog.h b/src/xine-engine/plugin_catalog.h index e851a17a8..d65ea8e25 100644 --- a/src/xine-engine/plugin_catalog.h +++ b/src/xine-engine/plugin_catalog.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: plugin_catalog.h,v 1.3 2002/09/05 16:24:14 guenter Exp $ + * $Id: plugin_catalog.h,v 1.4 2002/09/06 18:13:12 mroi Exp $ * * xine-internal header: Definitions for plugin lists * @@ -51,7 +51,7 @@ struct plugin_catalog_s { plugin_node_t *video_decoder_map[DECODER_MAX]; plugin_node_t *spu_decoder_map[DECODER_MAX]; - char *ids[PLUGIN_MAX]; + const char *ids[PLUGIN_MAX]; }; typedef struct plugin_catalog_s plugin_catalog_t; |