diff options
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBTitle.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBTitle.m b/macosx/HBTitle.m index acbaddcea..b07e7f270 100644 --- a/macosx/HBTitle.m +++ b/macosx/HBTitle.m @@ -249,7 +249,7 @@ extern NSString *keySubTrackType; NSString *title; if (chapter->title != NULL) { - title = [NSString stringWithFormat:@"%s", chapter->title]; + title = @(chapter->title); } else { |