diff options
author | ritsuka <[email protected]> | 2015-08-06 09:50:09 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-08-06 09:50:09 +0000 |
commit | 21ea1a3f5c8334916b1927e95db19a0a29f28d63 (patch) | |
tree | bd7b1a6406b0d22c6fd822ce4d22cb60e094dbaa /macosx/HBOutputFileWriter.m | |
parent | d4a4a3ccd682ae6992902321e6bfcea0ff8c89a9 (diff) |
MacGui: switch back another property to assign, 10.7 does not support weak for NSWindowController and NSViewController classes
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7393 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBOutputFileWriter.m')
-rw-r--r-- | macosx/HBOutputFileWriter.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBOutputFileWriter.m b/macosx/HBOutputFileWriter.m index fffe9478b..2785cd319 100644 --- a/macosx/HBOutputFileWriter.m +++ b/macosx/HBOutputFileWriter.m @@ -37,7 +37,7 @@ return nil; } - f = freopen(NULL, "a", f); + f = freopen(url.path.fileSystemRepresentation, "a", f); if (!f) { return nil; |