diff options
author | Mark D. Roth <roth@google.com> | 2017-10-27 10:17:54 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-10-27 10:17:54 -0700 |
commit | 0e06c41c9cefe80ec2bae8a92bc0a0e2500af800 (patch) | |
tree | 8ad7cecaa6f3baf4bcbc572edc816cb9566de0bf /test | |
parent | 6e5ce7288da316a6ceee84bd071b6bbddec21495 (diff) |
Fix build failure.
Diffstat (limited to 'test')
-rw-r--r-- | test/core/client_channel/lb_policies_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/client_channel/lb_policies_test.c b/test/core/client_channel/lb_policies_test.c index ba37cd673f..0e47d8f324 100644 --- a/test/core/client_channel/lb_policies_test.c +++ b/test/core/client_channel/lb_policies_test.c @@ -53,8 +53,8 @@ typedef struct request_sequences { size_t n; /* number of iterations */ int *connections; /* indexed by the interation number, value is the index of the server it connected to or -1 if none */ - int *connectivity_states; /* indexed by the interation number, value is the - client connectivity state */ + /* indexed by the interation number, value is the client connectivity state */ + grpc_connectivity_state *connectivity_states; } request_sequences; typedef void (*verifier_fn)(const servers_fixture *, grpc_channel *, |