9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

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:
Msrc/libc/stdlib/strtoull.c | 2+-
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)