aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/avl
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-02-08 11:08:41 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-02-08 11:08:41 -0800
commit239b7d4b0be55975e5fc0b62e28f3d3e2a54fa9b (patch)
tree30c6d791eed6e7eaa8dfefe29b8b60651e56b059 /test/core/avl
parent8f4fbb1c550c99e25f42ceafec3af92b34279db5 (diff)
parent100e0a78ebc1ecfaefb57c5105506b3091d4b86c (diff)
Merge branch 'master' into gpr_review
Diffstat (limited to 'test/core/avl')
-rw-r--r--test/core/avl/avl_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/avl/avl_test.cc b/test/core/avl/avl_test.cc
index a290461599..ac1ab5c8e9 100644
--- a/test/core/avl/avl_test.cc
+++ b/test/core/avl/avl_test.cc
@@ -41,7 +41,7 @@ static void* int_copy(void* p, void* unused) { return box(*(int*)p); }
static void destroy(void* p, void* unused) { gpr_free(p); }
static const grpc_avl_vtable int_int_vtable = {destroy, int_copy, int_compare,
- destroy, int_copy};
+ destroy, int_copy};
static void check_get(grpc_avl avl, int key, int value) {
int* k = box(key);