Remove redundant assignment of `s'.

The variable is already initialized to `nptr'.

Found by:	LLVM's scan-build
This commit is contained in:
Ed Schouten 2009-02-26 12:06:46 +00:00
parent 1356a0807f
commit 64b0a21bf8

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));