diff options
author | ritsuka <[email protected]> | 2014-07-17 15:31:52 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-07-17 15:31:52 +0000 |
commit | 55f24a37ee63b4bee9444a8a745c507c7ad551eb (patch) | |
tree | 93d3c8a733b7d4bf44b713f793c8ebbe6d073715 | |
parent | 19d357c612955436bc60d67657e60b5e41039991 (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.m | 2 |
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 ) { |