summaryrefslogtreecommitdiff
path: root/t/helper/test-genzeros.c
diff options
context:
space:
mode:
Diffstat (limited to 't/helper/test-genzeros.c')
-rw-r--r--t/helper/test-genzeros.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/helper/test-genzeros.c b/t/helper/test-genzeros.c
index 9532f5bac9..b1197e91a8 100644
--- a/t/helper/test-genzeros.c
+++ b/t/helper/test-genzeros.c
@@ -3,14 +3,14 @@
int cmd__genzeros(int argc, const char **argv)
{
- long count;
+ intmax_t count;
if (argc > 2) {
fprintf(stderr, "usage: %s [<count>]\n", argv[0]);
return 1;
}
- count = argc > 1 ? strtol(argv[1], NULL, 0) : -1L;
+ count = argc > 1 ? strtoimax(argv[1], NULL, 0) : -1;
while (count < 0 || count--) {
if (putchar(0) == EOF)