From 64b0a21bf8219c99b82e50973d5588d32ff411c4 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Thu, 26 Feb 2009 12:06:46 +0000 Subject: [PATCH] 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(-) diff --git a/sys/libkern/strtouq.c b/sys/libkern/strtouq.c index 4ed72a18f29e..5877396023fd 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));