diff options
author | Damiano Galassi <[email protected]> | 2017-01-01 15:44:35 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-01 15:44:35 +0100 |
commit | ed846fdfd18802bcd9f515fe34ed08f81e3d1ab3 (patch) | |
tree | 5b3a7c4a05582b73c220723968242a8130bd3ff2 /macosx | |
parent | ed40e7a024e54f4b9ccd04f3c57a73701272b66c (diff) |
MacGui: [HBUtilities writeToActivityLog:] wants a c string, not a NSString.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBCore.m | 2 |
1 files changed, 1 insertions, 1 deletions
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 |