aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-03-21 16:43:38 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-03-21 16:43:38 -0700
commit48ed124138d5a6c58710fd6d89d2568733987959 (patch)
tree30798fa022894f667f5dcf708037ae6fe46a1663
parent098110d8821236223875d6dcfaa894e6f9587a3f (diff)
minor enum change
-rw-r--r--include/grpc/grpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h
index fa4fd6d49d..68c277cd08 100644
--- a/include/grpc/grpc.h
+++ b/include/grpc/grpc.h
@@ -96,7 +96,7 @@ GRPCAPI const char *grpc_g_stands_for(void);
/** Specifies the type of APIs to use to pop events from the completion queue */
typedef enum {
/* Events are popped out by calling grpc_completion_queue_next() API ONLY */
- GRPC_CQ_NEXT = 0,
+ GRPC_CQ_NEXT = 1,
/* Events are popped out by calling grpc_completion_queue_pluck() API ONLY */
GRPC_CQ_PLUCK