Remove redundant assignment of `s'.
The variable is already initialized to `nptr'. Found by: LLVM's scan-build
This commit is contained in:
parent
1356a0807f
commit
64b0a21bf8
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user