[PATCH 2/5] parse_size(): replace atoll() with strtoull()
From: Goffredo Baroncelli <hidden>
Date: 2012-10-22 20:17:22
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Goffredo Baroncelli <hidden>
Date: 2012-10-22 20:17:22
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Goffredo Baroncelli <redacted> Replace the function atoll with strtoull() --- utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils.c b/utils.c
index 705be7b..732c782 100644
--- a/utils.c
+++ b/utils.c@@ -1243,6 +1243,6 @@ u64 parse_size(char *s) } s[len - 1] = '\0'; } - return atoll(s) * mult; + return strtoull(s, NULL, 0) * mult; }
--
1.7.10.4