aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-09-12 16:25:39 -0700
committerGravatar Vijay Pai <vpai@google.com>2017-09-12 16:25:39 -0700
commitb2f490c565e87822245c486ce5b04b17adacd52d (patch)
tree316d7ecef9e4d3dca6c6024fad5d14ca1a7b2e44
parent6d4c993289875b04b35c32bcf854cf2013305ecc (diff)
Include limits.h since we're using INT_MAX (affects some compilers)
-rw-r--r--src/core/ext/transport/chttp2/transport/flow_control.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ext/transport/chttp2/transport/flow_control.c b/src/core/ext/transport/chttp2/transport/flow_control.c
index 39aa521029..0f078e79e9 100644
--- a/src/core/ext/transport/chttp2/transport/flow_control.c
+++ b/src/core/ext/transport/chttp2/transport/flow_control.c
@@ -18,6 +18,7 @@
#include "src/core/ext/transport/chttp2/transport/internal.h"
+#include <limits.h>
#include <math.h>
#include <string.h>