strtoumax is in the compat library so this works on platforms that don't have a native strtoull. Signed-off-by: Darren Tucker <dtucker@xxxxxxxxxxx> --- t/helper/test-progress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/helper/test-progress.c b/t/helper/test-progress.c index 5d05cbe789..3e9eb2abe3 100644 --- a/t/helper/test-progress.c +++ b/t/helper/test-progress.c @@ -47,7 +47,7 @@ int cmd__progress(int argc, const char **argv) char *end; if (skip_prefix(line.buf, "progress ", (const char **) &end)) { - uint64_t item_count = strtoull(end, &end, 10); + uint64_t item_count = strtoumax(end, &end, 10); if (*end != '\0') die("invalid input: '%s'\n", line.buf); display_progress(progress, item_count); @@ -55,10 +55,10 @@ int cmd__progress(int argc, const char **argv) (const char **) &end)) { uint64_t byte_count, test_ms; - byte_count = strtoull(end, &end, 10); + byte_count = strtoumax(end, &end, 10); if (*end != ' ') die("invalid input: '%s'\n", line.buf); - test_ms = strtoull(end + 1, &end, 10); + test_ms = strtoumax(end + 1, &end, 10); if (*end != '\0') die("invalid input: '%s'\n", line.buf); progress_test_ns = test_ms * 1000 * 1000; -- 2.21.3