Remove redundant assignment of `s'.

The variable is already initialized to `nptr'.

Found by:	LLVM's scan-build
This commit is contained in:
ed 2009-02-26 12:06:46 +00:00
parent 49be8ddba0
commit 0f8dee0434

View File

@ -56,7 +56,6 @@ strtouq(const char *nptr, char **endptr, int base)
/*
* See strtoq for comments as to the logic used.
*/
s = nptr;
do {
c = *s++;
} while (isspace(c));