summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-05 17:20:36 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-05 17:20:36 +0000
commit6172e30621828ecb4493d6b57ba0cf88bae4147f (patch)
tree7622d9455f288e8a45bf49bd4409f3103310c02a /usr.bin/rcs/ci.c
parentf4281f37fc4f53dd7decf9631f3070382505d97c (diff)
checkin_parsekeyword() returns void so zap unnecessary return.
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index 57cc5d1c086..13f5f454b2f 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.104 2006/03/05 17:17:27 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.105 2006/03/05 17:20:35 niallo Exp $ */
/*
* Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -1067,6 +1067,4 @@ checkin_parsekeyword(char *keystring, RCSNUM **rev, time_t *date,
fatal("could not parse rcsnum");
break;
}
-
- return;
}