summaryrefslogtreecommitdiffstats
path: root/sys/libkern/strtouq.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/libkern/strtouq.c')
-rw-r--r--sys/libkern/strtouq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/libkern/strtouq.c b/sys/libkern/strtouq.c
index ac939fc..43d11fe 100644
--- a/sys/libkern/strtouq.c
+++ b/sys/libkern/strtouq.c
@@ -48,7 +48,7 @@
* alphabets and digits are each contiguous.
*/
u_quad_t
-strtouq(const char *nptr, const char **endptr, int base)
+strtouq(const char *nptr, char **endptr, int base)
{
const char *s = nptr;
u_quad_t acc;
@@ -106,6 +106,6 @@ strtouq(const char *nptr, const char **endptr, int base)
} else if (neg)
acc = -acc;
if (endptr != 0)
- *endptr = (const char *)(any ? s - 1 : nptr);
+ *endptr = (char *)(any ? s - 1 : nptr);
return (acc);
}
OpenPOWER on IntegriCloud