diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-01-09 12:54:01 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-09 12:54:01 -0800 |
commit | a6899be634fe59309c8db4be1f3c6b14b9ace6fd (patch) | |
tree | fccfa69c2c2998d81de3d421f5366fc38965a4b1 /test/core | |
parent | 8232204a36712553b9eedb2dacab13b7c38642c6 (diff) |
Fix a compiler warning.
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/statistics/census_log_tests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/statistics/census_log_tests.c b/test/core/statistics/census_log_tests.c index 91c6015c0f..44ad4b9358 100644 --- a/test/core/statistics/census_log_tests.c +++ b/test/core/statistics/census_log_tests.c @@ -59,7 +59,7 @@ static void read_records(size_t record_size, const char* buffer, GPR_ASSERT(buffer_size % record_size == 0); *num_records = buffer_size / record_size; for (ix = 0; ix < *num_records; ++ix) { - gpr_int32 jx; + size_t jx; const char* record = buffer + (record_size * ix); char data = (gpr_uintptr)record % 255; for (jx = 0; jx < record_size; ++jx) { |