This commit is contained in:
Mark Andrews
2003-09-02 02:25:18 +00:00
parent 8ec7cf74bf
commit 827deeb399
+3 -2
View File
@@ -52,7 +52,7 @@
static char sccsid[] = "@(#)strtoul.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
/* $Id: strtoul.c,v 1.2.14.1 2003/09/02 01:49:46 marka Exp $ */
/* $Id: strtoul.c,v 1.2.14.2 2003/09/02 02:25:18 marka Exp $ */
#include <config.h>
@@ -61,6 +61,7 @@ static char sccsid[] = "@(#)strtoul.c 8.1 (Berkeley) 6/4/93";
#include <errno.h>
#include <isc/stdlib.h>
#include <isc/util.h>
/*
* Convert a string to an unsigned long integer.
@@ -122,6 +123,6 @@ isc_strtoul(const char *nptr, char **endptr, int base) {
} else if (neg)
acc = -acc;
if (endptr != 0)
*endptr = (char *)(any ? s - 1 : nptr);
DE_CONST(any ? s - 1 : nptr, *endptr);
return (acc);
}