diff options
author | Craig Tiller <ctiller@google.com> | 2017-05-09 08:38:41 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-05-09 08:38:41 -0700 |
commit | 9cd102a4ebf7d8a76ba481748b20e450929bd65b (patch) | |
tree | 28d5b167cf487a8c989d6284dffead7c7a74170a | |
parent | db3462790762ec201ed384ba645cd2e36fcafa56 (diff) |
Fix printf
-rw-r--r-- | src/core/lib/iomgr/ev_epoll_thread_pool_linux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c b/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c index d31d4631a0..bb44321922 100644 --- a/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c +++ b/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c @@ -1167,7 +1167,8 @@ static void add_fd_to_eps(grpc_fd *fd) { EPS_ADD_REF(eps, "fd"); fd->eps = eps; - GRPC_POLLING_TRACE("add_fd_to_eps (fd: %d, eps idx = %ld)", fd->fd, idx); + GRPC_POLLING_TRACE("add_fd_to_eps (fd: %d, eps idx = %" PRIdPTR ")", fd->fd, + idx); gpr_mu_unlock(&fd->mu); GRPC_LOG_IF_ERROR("add_fd_to_eps", error); |