diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:18:56 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:18:56 +0000 |
commit | 6a90ef1128ca51713804e94da00f9c3a7440ec16 (patch) | |
tree | 7334efc2d5286d3842c0256a26673a381c9514b2 /src/demuxers/group_games.c | |
parent | 11de71b0938af5b027b78b0e0db9617ab22a319f (diff) | |
download | xine-lib-6a90ef1128ca51713804e94da00f9c3a7440ec16.tar.gz xine-lib-6a90ef1128ca51713804e94da00f9c3a7440ec16.tar.bz2 |
Various static/const fixes from Gentoo.
CVS patchset: 8009
CVS date: 2006/06/02 22:18:56
Diffstat (limited to 'src/demuxers/group_games.c')
-rw-r--r-- | src/demuxers/group_games.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/demuxers/group_games.c b/src/demuxers/group_games.c index e1c387e4d..cb33f33b3 100644 --- a/src/demuxers/group_games.c +++ b/src/demuxers/group_games.c @@ -19,7 +19,7 @@ * * This file contains plugin entries for several demuxers used in games * - * $Id: group_games.c,v 1.13 2006/05/03 19:46:07 dsalt Exp $ + * $Id: group_games.c,v 1.14 2006/06/02 22:18:57 dsalt Exp $ */ #ifdef HAVE_CONFIG_H @@ -35,47 +35,47 @@ * exported plugin catalog entries */ -demuxer_info_t demux_info_eawve = { +static const demuxer_info_t demux_info_eawve = { 10 /* priority */ }; -demuxer_info_t demux_info_idcin = { +static const demuxer_info_t demux_info_idcin = { 10 /* priority */ }; -demuxer_info_t demux_info_ipmovie = { +static const demuxer_info_t demux_info_ipmovie = { 10 /* priority */ }; -demuxer_info_t demux_info_vqa = { +static const demuxer_info_t demux_info_vqa = { 10 /* priority */ }; -demuxer_info_t demux_info_wc3movie = { +static const demuxer_info_t demux_info_wc3movie = { 10 /* priority */ }; -demuxer_info_t demux_info_roq = { +static const demuxer_info_t demux_info_roq = { 10 /* priority */ }; -demuxer_info_t demux_info_str = { +static const demuxer_info_t demux_info_str = { 10 /* priority */ }; -demuxer_info_t demux_info_film = { +static const demuxer_info_t demux_info_film = { 10 /* priority */ }; -demuxer_info_t demux_info_smjpeg = { +static const demuxer_info_t demux_info_smjpeg = { 10 /* priority */ }; -demuxer_info_t demux_info_fourxm = { +static const demuxer_info_t demux_info_fourxm = { 10 /* priority */ }; -demuxer_info_t demux_info_vmd = { +static const demuxer_info_t demux_info_vmd = { 10 /* priority */ }; |