summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-07-17 15:31:52 +0000
committerritsuka <[email protected]>2014-07-17 15:31:52 +0000
commit55f24a37ee63b4bee9444a8a745c507c7ad551eb (patch)
tree93d3c8a733b7d4bf44b713f793c8ebbe6d073715
parent19d357c612955436bc60d67657e60b5e41039991 (diff)
MacGUI: removed an unneeded __bridge in HBDVDDetector. Might fix a crash in the nightly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6237 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBDVDDetector.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBDVDDetector.m b/macosx/HBDVDDetector.m
index f1fdd1bd7..97b4802a1 100644
--- a/macosx/HBDVDDetector.m
+++ b/macosx/HBDVDDetector.m
@@ -86,7 +86,7 @@
DASessionRef session = DASessionCreate(kCFAllocatorDefault);
DADiskRef disk = DADiskCreateFromVolumePath(kCFAllocatorDefault,
session,
- (__bridge CFURLRef)volumeURL);
+ (CFURLRef)volumeURL);
if ( disk )
{