summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-01 14:30:55 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-01 14:30:55 +0000
commitd8edb8566cf577169d1d17de0665d8b0e097459d (patch)
treedccbf1718e46124a822520ca7dd4a005d79c001a /mencoder.c
parentb3ebd28168eed4245fda255a4e865c02fcbf465a (diff)
downloadmpv-d8edb8566cf577169d1d17de0665d8b0e097459d.tar.bz2
mpv-d8edb8566cf577169d1d17de0665d8b0e097459d.tar.xz
warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7221 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index fddbb26bae..3024ef0e00 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -528,7 +528,7 @@ if (vobsub_out) {
unsigned char tmp[3] = { 0, 0, 0 };
if (spudec_ifo && vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, dvdsub_id, tmp) >= 0)
vobsub_writer = vobsub_out_open(vobsub_out, palette, sh_video->disp_w, sh_video->disp_h,
- vobsub_out_id?vobsub_out_id:tmp, vobsub_out_index);
+ vobsub_out_id?vobsub_out_id:(char *)tmp, vobsub_out_index);
#ifdef USE_DVDREAD
if (vobsub_writer == NULL) {
char tmp[3];