diff options
author | ritsuka <[email protected]> | 2015-03-19 16:12:45 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-03-19 16:12:45 +0000 |
commit | 343b5248f8a0e0ffc756ece9a81e1e5d83a43a33 (patch) | |
tree | c2a7a3f3bd9efe6d2c500ebd8bf2be18ebb04085 /macosx/HBAudioTrackPreset.m | |
parent | e0c8715ad5612f5afd6dc8cb11d7e1f135726f01 (diff) |
MacGui: add a missing ownership qualifier needed by ARC.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7005 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioTrackPreset.m')
-rw-r--r-- | macosx/HBAudioTrackPreset.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBAudioTrackPreset.m b/macosx/HBAudioTrackPreset.m index 80bcf918d..1e9bc021e 100644 --- a/macosx/HBAudioTrackPreset.m +++ b/macosx/HBAudioTrackPreset.m @@ -139,7 +139,7 @@ static void *HBAudioEncoderContex = &HBAudioEncoderContex; // Because we have indicated that the binding for the gain validates immediately we can implement the // key value binding method to ensure the gain stays in our accepted range. -- (BOOL)validateGain:(id *)ioValue error:(NSError *)outError +- (BOOL)validateGain:(id *)ioValue error:(NSError * __autoreleasing *)outError { BOOL retval = YES; |