Skip to content

Commit

Permalink
avoid warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
typester committed Dec 31, 2010
1 parent 2005478 commit 116925e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loop.m
Expand Up @@ -65,8 +65,8 @@ -(void)setup_watcher {

CFStreamCreatePairWithSocket(
kCFAllocatorDefault, fd,
NULL != rcb ? &read_stream : NULL,
NULL != wcb ? &write_stream : NULL
(CFReadStreamRef*)(NULL != rcb ? &read_stream : NULL),
(CFWriteStreamRef*)(NULL != wcb ? &write_stream : NULL)
);

if (NULL != rcb) {
Expand Down

0 comments on commit 116925e

Please sign in to comment.