diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-03 21:07:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-03 21:07:24 +0000 |
commit | e903532c7912a5649d8b4496f4e960a8e9ecb405 (patch) | |
tree | d54a231092b0e98b89487d58e278ec3ca93ea635 /usr.bin/rcs | |
parent | 773c467750f601787f8852612b4ea6d4e6cbe5b7 (diff) |
make this modern C
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r-- | usr.bin/rcs/ci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 9a96c6190f2..c8f779df441 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.195 2007/02/27 07:59:13 xsa Exp $ */ +/* $OpenBSD: ci.c,v 1.196 2007/03/03 21:07:23 deraadt Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -901,7 +901,7 @@ checkin_keywordscan(BUF *data, RCSNUM **rev, time_t *date, char **author, /* XXX - Not binary safe. */ rcs_buf_putc(buf, '\0'); checkin_parsekeyword(rcs_buf_get(buf), rev, date, author, state); -loopend: +loopend:; } if (kwstr == NULL) return (-1); |