aboutsummaryrefslogtreecommitdiffstats
path: root/strtouhh.c
diff options
context:
space:
mode:
Diffstat (limited to 'strtouhh.c')
-rw-r--r--strtouhh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strtouhh.c b/strtouhh.c
index b13800d..72dbd7c 100644
--- a/strtouhh.c
+++ b/strtouhh.c
@@ -6,7 +6,7 @@
unsigned char
libsimple_strtouhh(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 > UCHAR_MAX) {
r = UCHAR_MAX;
errno = ERANGE;