summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-02 01:01:22 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-02 01:01:22 +0000
commit12ff2d26443daa2f085536e44119a68107384ec3 (patch)
tree9786c27288fced134dfb743052e1b58bea792076 /mplayer.c
parent63f2517dd233adf6096e2b378c9cc0a8c8ba0d66 (diff)
downloadmpv-12ff2d26443daa2f085536e44119a68107384ec3.tar.bz2
mpv-12ff2d26443daa2f085536e44119a68107384ec3.tar.xz
Add some const qualifiers to reduce warnings
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26320 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 1e92a43ac3..1a03616d14 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2182,7 +2182,7 @@ int reinit_video_chain(void) {
}
if (insert) {
extern vf_info_t vf_info_ass;
- vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
+ const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
char* vf_arg[] = {"auto", "1", NULL};
vf_instance_t* vf_ass = vf_open_plugin(libass_vfs,sh_video->vfilter,"ass",vf_arg);
if (vf_ass)