summaryrefslogtreecommitdiffstats
path: root/macosx/HBCore.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-20 09:26:38 +0000
committerritsuka <[email protected]>2014-12-20 09:26:38 +0000
commit27c5b2f23ce5f6c2a0de427f958e23e92bb20107 (patch)
tree12c5306c382ba8fcbaf7dff794f78a91fb2778e6 /macosx/HBCore.m
parent53728b3250431f0e5e351d7c06dc54565326e802 (diff)
MacGui: use the right string format specifier in HBCore.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6618 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBCore.m')
-rw-r--r--macosx/HBCore.m6
1 files 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"