diff options
author | 2007-05-17 03:37:31 +0000 | |
---|---|---|
committer | 2007-05-17 03:37:31 +0000 | |
commit | 37ab307e93d490bc6141ed0ab679b39a723c84cb (patch) | |
tree | 54ef77e887420217b1e602a2d2d8a8347100dd2a | |
parent | Don't free unused variable, from tbert. (diff) | |
download | wireguard-openbsd-37ab307e93d490bc6141ed0ab679b39a723c84cb.tar.xz wireguard-openbsd-37ab307e93d490bc6141ed0ab679b39a723c84cb.zip |
Remove extra return statement, from tbert from lint.
OK jaredy@ and moritz@
-rw-r--r-- | usr.bin/make/lowparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/lowparse.c b/usr.bin/make/lowparse.c index 41d67596de0..beaa0263a43 100644 --- a/usr.bin/make/lowparse.c +++ b/usr.bin/make/lowparse.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: lowparse.c,v 1.18 2004/04/07 13:11:36 espie Exp $ */ +/* $OpenBSD: lowparse.c,v 1.19 2007/05/17 03:37:31 ray Exp $ */ /* low-level parsing functions. */ @@ -373,7 +373,6 @@ ParseSkipEmptyLines(Buffer linebuf) return '\n'; else return c; - return c; } } } |