aboutsummaryrefslogtreecommitdiff
path: root/benchtests/bench-memcpy-walk.c
diff options
context:
space:
mode:
Diffstat (limited to 'benchtests/bench-memcpy-walk.c')
-rw-r--r--benchtests/bench-memcpy-walk.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/benchtests/bench-memcpy-walk.c b/benchtests/bench-memcpy-walk.c
index caf71e5..2771f56 100644
--- a/benchtests/bench-memcpy-walk.c
+++ b/benchtests/bench-memcpy-walk.c
@@ -83,7 +83,6 @@ int
test_main (void)
{
json_ctx_t json_ctx;
- size_t i;
test_init ();
@@ -102,7 +101,7 @@ test_main (void)
json_array_end (&json_ctx);
json_array_begin (&json_ctx, "results");
- for (i = START_SIZE; i <= MIN_PAGE_SIZE; i <<= 1)
+ for (size_t i = START_SIZE; i <= MIN_PAGE_SIZE; i <<= 1)
{
/* Test length alignments from 0-16 bytes. */
for (int j = 0; j < 8; j++)