summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorRodeo <[email protected]>2011-12-08 11:04:44 +0000
committerRodeo <[email protected]>2011-12-08 11:04:44 +0000
commitb05c948d3845d3660655edb60572908e81dd4ca7 (patch)
treee02144d52cfeb633fe53e83319324617b0c6ee3c /macosx
parentfa05b1b7b3dc53d32d98bfe00c265a6349b7d1ab (diff)
MacGui: fix some warnings introduced in the previous commit.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4375 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m
index 2d0c1c688..2c713dad1 100644
--- a/macosx/Controller.m
+++ b/macosx/Controller.m
@@ -3292,7 +3292,7 @@ bool one_burned = FALSE;
if ([fPictureController decomb] == 1)
{
/* use a custom decomb string */
- hb_filter_decomb.settings = [[fPictureController decombCustomString] UTF8String];
+ hb_filter_decomb.settings = (char *) [[fPictureController decombCustomString] UTF8String];
hb_list_add( job->filters, &hb_filter_decomb );
}
if ([fPictureController decomb] == 2)
@@ -3821,7 +3821,7 @@ bool one_burned = FALSE;
if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 1)
{
/* use a custom decomb string */
- hb_filter_decomb.settings = [[queueToApply objectForKey:@"PictureDecombCustom"] UTF8String];
+ hb_filter_decomb.settings = (char *) [[queueToApply objectForKey:@"PictureDecombCustom"] UTF8String];
hb_list_add( job->filters, &hb_filter_decomb );
}
if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 2)