diff options
author | 2006-03-05 17:20:35 +0000 | |
---|---|---|
committer | 2006-03-05 17:20:35 +0000 | |
commit | c465ac3cde6c761b137cf8b9c357ef7ef9d33d8d (patch) | |
tree | 36c2523a3b880b772d3098b3aeb6d7e8ad7b832d | |
parent | GNU ci(1) doesn't allow dates younger than HEAD, neither on the command (diff) | |
download | wireguard-openbsd-c465ac3cde6c761b137cf8b9c357ef7ef9d33d8d.tar.xz wireguard-openbsd-c465ac3cde6c761b137cf8b9c357ef7ef9d33d8d.zip |
checkin_parsekeyword() returns void so zap unnecessary return.
-rw-r--r-- | usr.bin/rcs/ci.c | 4 |
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; } |