mirror of
https://github.com/mpv-player/mpv
synced 2025-03-22 19:34:14 +00:00
Fix:
frequencies.c:1168: warning: initialization discards qualifiers from pointer target type dvbin.c:843: warning: assignment from incompatible pointer type git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18514 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
c471ba947a
commit
82bcbf62af
libmpdemux
@ -778,8 +778,8 @@ dvb_config_t *dvb_get_config(void)
|
||||
int i, fd, type, size;
|
||||
char filename[30], *conf_file, *name;
|
||||
dvb_channels_list *list;
|
||||
dvb_card_config_t *cards = NULL;
|
||||
dvb_config_t *conf = NULL, *tmp;
|
||||
dvb_card_config_t *cards = NULL, *tmp;
|
||||
dvb_config_t *conf = NULL;
|
||||
|
||||
if(dvb_config != NULL)
|
||||
return dvb_config;
|
||||
|
@ -1165,5 +1165,5 @@ const struct CHANLISTS chanlists[] = {
|
||||
};
|
||||
|
||||
int chantab = 5;
|
||||
struct CHANLIST *chanlist = europe_west;
|
||||
const struct CHANLIST *chanlist = europe_west;
|
||||
int chancount = CHAN_COUNT(europe_west);
|
||||
|
@ -107,5 +107,5 @@ extern const struct CHANLISTS chanlists[];
|
||||
//extern struct STRTAB chanlist_names[];
|
||||
|
||||
extern int chantab;
|
||||
extern struct CHANLIST *chanlist;
|
||||
extern const struct CHANLIST *chanlist;
|
||||
extern int chancount;
|
||||
|
Loading…
Reference in New Issue
Block a user