File strtoul-longlong.diff of Package statifier
---
src/strtoul.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/src/strtoul.c
+++ b/src/strtoul.c
@@ -37,7 +37,7 @@
}
errno = 0;
- nums[index - 1] = strtoul(start, &endptr, 0);
+ nums[index - 1] = strtoull(start, &endptr, 0);
if (errno != 0) { /* Something wrong */
fprintf(
stderr,