commit 7ea8af69eacf81437f7da9a8c5ae2b0c3c64dfb2
parent e6a49e347382074b4fc3e9c9088ef5c82244efea
Author: Roberto Vargas <roberto.vargas@arm.com>
Date: Fri, 2 Nov 2018 14:41:05 +0000
[libc] Small withespace change
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libc/stdlib/strtoull.c b/src/libc/stdlib/strtoull.c
@@ -55,7 +55,7 @@ strtoull(const char *s, char **end, int base)
*end = t;
if (n == 0 && s == t)
errno = EINVAL;
- return n*sign;;
+ return n*sign;
overflow:
if (end)