aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support/murmur_hash_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/support/murmur_hash_test.c')
-rw-r--r--test/core/support/murmur_hash_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/support/murmur_hash_test.c b/test/core/support/murmur_hash_test.c
index 5677515d04..461c728951 100644
--- a/test/core/support/murmur_hash_test.c
+++ b/test/core/support/murmur_hash_test.c
@@ -23,7 +23,7 @@
#include <string.h>
-typedef uint32_t (*hash_func)(const void *key, size_t len, uint32_t seed);
+typedef uint32_t (*hash_func)(const void* key, size_t len, uint32_t seed);
/* From smhasher:
This should hopefully be a thorough and uambiguous test of whether a hash
@@ -63,7 +63,7 @@ static void verification_test(hash_func hash, uint32_t expected) {
}
}
-int main(int argc, char **argv) {
+int main(int argc, char** argv) {
grpc_test_init(argc, argv);
/* basic tests to verify that things don't crash */
gpr_murmur_hash3("", 0, 0);