s/MAX_INT/INT_MAX/

pull/7024/head
Mark D. Roth 9 years ago
parent 51d0022448
commit 44a2f25667
  1. 3
      test/core/end2end/tests/filter_call_init_fails.c

@ -33,6 +33,7 @@
#include "test/core/end2end/end2end_tests.h" #include "test/core/end2end/end2end_tests.h"
#include <limits.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@ -246,7 +247,7 @@ static bool maybe_add_filter(grpc_channel_stack_builder *builder, void *arg) {
} }
static void init_plugin(void) { static void init_plugin(void) {
grpc_channel_init_register_stage(GRPC_SERVER_CHANNEL, MAX_INT, grpc_channel_init_register_stage(GRPC_SERVER_CHANNEL, INT_MAX,
maybe_add_filter, NULL); maybe_add_filter, NULL);
} }

Loading…
Cancel
Save