diff options
author | David Garcia Quintas <dgq@google.com> | 2015-09-11 13:33:57 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-09-11 18:37:59 -0700 |
commit | a4c43a6cbb6554fe180e0d64dfa27f6b868b65d5 (patch) | |
tree | f18b8159289ec0652a219a016eefaaa86b600270 /src/core/iomgr/wakeup_fd_pipe.c | |
parent | 3924fcb1c0d0c2ae9fd2995da4ce79e903766fef (diff) | |
parent | 35fea62432d7a41b5b3bc96d9af7975310553fe7 (diff) |
Merge branch 'master' of github.com:grpc/grpc into rr_with_registry
Diffstat (limited to 'src/core/iomgr/wakeup_fd_pipe.c')
-rw-r--r-- | src/core/iomgr/wakeup_fd_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/iomgr/wakeup_fd_pipe.c b/src/core/iomgr/wakeup_fd_pipe.c index bd643e8061..902034ee4b 100644 --- a/src/core/iomgr/wakeup_fd_pipe.c +++ b/src/core/iomgr/wakeup_fd_pipe.c @@ -56,7 +56,7 @@ static void pipe_init(grpc_wakeup_fd *fd_info) { static void pipe_consume(grpc_wakeup_fd *fd_info) { char buf[128]; - int r; + ssize_t r; for (;;) { r = read(fd_info->read_fd, buf, sizeof(buf)); |