reftable tests: avoid "int" overflow, use "uint64_t"
commit22d2f70e85e767abba2e284e32c0edb7f749e29c
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Tue, 11 Jan 2022 16:40:23 +0000 (11 17:40 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Jan 2022 21:39:09 +0000 (13 13:39 -0800)
tree84d6d269a557b1e109af0a0ff3706e29756bd490
parentf2b255141b3008a46b4946e7da44b966797e4355
reftable tests: avoid "int" overflow, use "uint64_t"

Change code added in 1ae2b8cda84 (reftable: add merged table view,
2021-10-07) to consistently use the "uint64_t" type. These "min" and
"max" variables get passed in the body of this function to a function
whose prototype is:

    [...] reftable_writer_set_limits([...], uint64_t min, uint64_t max

This avoids the following warning on SunCC 12.5 on
gcc211.fsffrance.org:

    "reftable/merged_test.c", line 27: warning: initializer does not fit or is out of range: 0xffffffff

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reftable/merged_test.c