diff options
author | Craig Tiller <ctiller@google.com> | 2016-04-06 10:25:04 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-04-06 10:25:04 -0700 |
commit | 12445ee3740efbcc25dc1f2f00754d81acd060c6 (patch) | |
tree | 2bdf618dbf4cc0aefcd0954e993c014c838ffd76 /src/core | |
parent | bb368b467e004b79052a39705f04f43597861023 (diff) |
Add missing include
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/unix_sockets_posix_noop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/unix_sockets_posix_noop.c b/src/core/lib/iomgr/unix_sockets_posix_noop.c index 4134870b80..d30952789f 100644 --- a/src/core/lib/iomgr/unix_sockets_posix_noop.c +++ b/src/core/lib/iomgr/unix_sockets_posix_noop.c @@ -35,6 +35,8 @@ #ifndef GPR_HAVE_UNIX_SOCKET +#include <grpc/support/log.h> + void grpc_create_socketpair_if_unix(int sv[2]) { // TODO: Either implement this for the non-Unix socket case or make // sure that it is never called in any such case. Until then, leave an |