From 27c5b2f23ce5f6c2a0de427f958e23e92bb20107 Mon Sep 17 00:00:00 2001 From: ritsuka Date: Sat, 20 Dec 2014 09:26:38 +0000 Subject: MacGui: use the right string format specifier in HBCore. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6618 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/HBCore.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/macosx/HBCore.m b/macosx/HBCore.m index 33edef41d..d58c02520 100644 --- a/macosx/HBCore.m +++ b/macosx/HBCore.m @@ -134,20 +134,20 @@ NSString *HBCoreMuxingNotification = @"HBCoreMuxingNotification"; // The chosen path was actually on a DVD, so use the raw block // device path instead. - [HBUtilities writeToActivityLog:"%@ trying to open a physical dvd at: %s", self.name.UTF8String, url.path.UTF8String]; + [HBUtilities writeToActivityLog:"%s trying to open a physical dvd at: %s", self.name.UTF8String, url.path.UTF8String]; // Notify the user that we don't support removal of copy protection. void *dvdcss = dlopen("libdvdcss.2.dylib", RTLD_LAZY); if (dvdcss) { // libdvdcss was found so all is well - [HBUtilities writeToActivityLog:"%@ libdvdcss.2.dylib found for decrypting physical dvd", self.name.UTF8String]; + [HBUtilities writeToActivityLog:"%s libdvdcss.2.dylib found for decrypting physical dvd", self.name.UTF8String]; dlclose(dvdcss); } else { // compatible libdvdcss not found - [HBUtilities writeToActivityLog:"%@, libdvdcss.2.dylib not found for decrypting physical dvd", self.name.UTF8String]; + [HBUtilities writeToActivityLog:"%s, libdvdcss.2.dylib not found for decrypting physical dvd", self.name.UTF8String]; if (error) { *error = [NSError errorWithDomain:@"HBErrorDomain" -- cgit v1.2.3