From 0f8dee0434fc59eb4c1823c1e692d1d177aafe8f Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 26 Feb 2009 12:06:46 +0000 Subject: Remove redundant assignment of `s'. The variable is already initialized to `nptr'. Found by: LLVM's scan-build --- sys/libkern/strtouq.c | 1 - 1 file changed, 1 deletion(-) (limited to 'sys/libkern') diff --git a/sys/libkern/strtouq.c b/sys/libkern/strtouq.c index 4ed72a1..5877396 100644 --- a/sys/libkern/strtouq.c +++ b/sys/libkern/strtouq.c @@ -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)); -- cgit v1.1