diff options
author | ritsuka <[email protected]> | 2008-07-28 17:06:39 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-07-28 17:06:39 +0000 |
commit | 9fcde78af1af10563bf9ea0cd07dbc9da3207a66 (patch) | |
tree | e9951b5bc2998182b0126290fcd4332a570ab950 /macosx/HBOutputRedirect.m | |
parent | cd18a6fff47eb748cde2df8c3b719e3a07b71543 (diff) |
MacGui: Use nil instead of NULL. Patch by blindjimmy. http://handbrake.djgraphite.com/r/33/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1586 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBOutputRedirect.m')
-rw-r--r-- | macosx/HBOutputRedirect.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBOutputRedirect.m b/macosx/HBOutputRedirect.m index 4fab90161..29ae733f2 100644 --- a/macosx/HBOutputRedirect.m +++ b/macosx/HBOutputRedirect.m @@ -108,9 +108,9 @@ int stderrwrite(void *inFD, const char *buffer, int size) [self autorelease]; if (self == g_stdoutRedirect) - g_stdoutRedirect = NULL; + g_stdoutRedirect = nil; else if (self == g_stderrRedirect) - g_stderrRedirect = NULL; + g_stderrRedirect = nil; } } |