summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/Controller.m')
-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)