aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-03-24 11:05:48 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-03-24 11:05:48 -0700
commit761f7bc3e4cb87af5521eae8803d27dbee64c958 (patch)
treed3e50ae1d89460b6cee261f16ecb88547cb4ffbe /src
parent81dbf84ded56f5f0fe8884e0bc151167fd5bec1c (diff)
Fix todo, do not explicitly mark assignment
Diffstat (limited to 'src')
-rw-r--r--src/core/iomgr/unix_sockets_posix_noop.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/iomgr/unix_sockets_posix_noop.c b/src/core/iomgr/unix_sockets_posix_noop.c
index 5e797dbdc4..d899b46093 100644
--- a/src/core/iomgr/unix_sockets_posix_noop.c
+++ b/src/core/iomgr/unix_sockets_posix_noop.c
@@ -36,7 +36,9 @@
#ifndef GPR_HAVE_UNIX_SOCKET
void grpc_create_socketpair_if_unix(int sv[2]) {
- // TODO(ahedberg): Please fill in an implementation for non-Unix-sockets case
+ // 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
+ // assertion to notify if this gets called inadvertently
GPR_ASSERT(0);
}