From ed846fdfd18802bcd9f515fe34ed08f81e3d1ab3 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Sun, 1 Jan 2017 15:44:35 +0100 Subject: MacGui: [HBUtilities writeToActivityLog:] wants a c string, not a NSString. --- macosx/HBCore.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/HBCore.m b/macosx/HBCore.m index 0222abeee..31f293448 100644 --- a/macosx/HBCore.m +++ b/macosx/HBCore.m @@ -481,7 +481,7 @@ static void hb_error_handler(const char *errmsg) self.state = HBStateWorking; [HBUtilities writeToActivityLog:"%s started encoding %s", self.name.UTF8String, job.destURL.lastPathComponent.UTF8String]; - [HBUtilities writeToActivityLog:"%s with preset %s", self.name.UTF8String, job.presetName]; + [HBUtilities writeToActivityLog:"%s with preset %s", self.name.UTF8String, job.presetName.UTF8String]; } - (HBCoreResult)workDone -- cgit v1.2.3