X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fjournal%2Ftest-compress-benchmark.c;h=0141df490ed410c5067dcbadda562c3b9ccfedba;hb=1651e2c61e544de9ca947c8b3202552b1272ef57;hp=0a23bd1e131d5e9c161c90576471e271cabe5bb8;hpb=fd53fee04b1f1c1ca1e30e8d470d7416900a35dc;p=elogind.git diff --git a/src/journal/test-compress-benchmark.c b/src/journal/test-compress-benchmark.c index 0a23bd1e1..0141df490 100644 --- a/src/journal/test-compress-benchmark.c +++ b/src/journal/test-compress-benchmark.c @@ -42,12 +42,12 @@ static char* make_buf(size_t count) { static void test_compress_decompress(const char* label, compress_t compress, decompress_t decompress) { - usec_t n, n2; + usec_t n, n2 = 0; float dt; _cleanup_free_ char *text, *buf; _cleanup_free_ void *buf2 = NULL; - size_t buf2_allocated = 0; + uint64_t buf2_allocated = 0; size_t skipped = 0, compressed = 0, total = 0; text = make_buf(MAX_SIZE); @@ -57,7 +57,7 @@ static void test_compress_decompress(const char* label, n = now(CLOCK_MONOTONIC); for (size_t i = 1; i <= MAX_SIZE; i += (i < 2048 ? 1 : 217)) { - size_t j = 0, k = 0; + uint64_t j = 0, k = 0; int r; r = compress(text, i, buf, &j); @@ -72,7 +72,7 @@ static void test_compress_decompress(const char* label, assert(j > 0); if (j >= i) - log_error("%s \"compressed\" %zu -> %zu", label, i, j); + log_error("%s \"compressed\" %zu -> %" PRIu64, label, i, j); r = decompress(buf, j, &buf2, &buf2_allocated, &k, 0); assert(r == 0);