diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-17 03:37:32 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-17 03:37:32 +0000 |
commit | da5e6ff176f1e19b46c10374133d93591b22f0f6 (patch) | |
tree | 2e8fba2c1fb81adf908132ddea5dc517382fb0b2 /usr.bin | |
parent | 4a5a6f40f963de5c2b7fffa29f34250ba39be1c2 (diff) |
Remove extra return statement, from tbert from lint.
OK jaredy@ and moritz@
Diffstat (limited to 'usr.bin')
-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; } } } |