aboutsummaryrefslogtreecommitdiffstats
path: root/strtou.c
diff options
context:
space:
mode:
Diffstat (limited to 'strtou.c')
-rw-r--r--strtou.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strtou.c b/strtou.c
index 4201c1f..1faee3c 100644
--- a/strtou.c
+++ b/strtou.c
@@ -6,7 +6,7 @@
unsigned int
libsimple_strtou(const char *restrict nptr, char **restrict end, int base) /* TODO test, man */
{
- signed long int r = strtoul(nptr, end, base);
+ unsigned long int r = strtoul(nptr, end, base);
if(r > UINT_MAX) {
r = UINT_MAX;
errno = ERANGE;