diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-11-17 00:03:05 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-11-17 00:03:05 +0000 |
commit | ee3b7c8b73f4fe4c35f7bef6dda40858b11cdc54 (patch) | |
tree | ef41878f276db4d49a2ae4b501ffe493bb07edc0 /usr.bin/rcs/ci.c | |
parent | 5b8f8232bbd5be5b2b374e951e936588332799f6 (diff) |
- spelling fix
- minor KNF
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r-- | usr.bin/rcs/ci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 586b985dd4b..b96872009ce 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.59 2005/11/16 19:23:46 niallo Exp $ */ +/* $OpenBSD: ci.c,v 1.60 2005/11/17 00:03:04 niallo Exp $ */ /* * Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -238,7 +238,8 @@ checkin_main(int argc, char **argv) pb.file = rcs_open(pb.fpath, pb.openflags, pb.fmode); if (pb.file == NULL) { - cvs_log(LP_ERR, "failed to open rcsfile '%s'", pb.fpath); + cvs_log(LP_ERR, "failed to open rcsfile '%s'", + pb.fpath); exit(1); } @@ -545,7 +546,7 @@ checkin_getinput(const char *prompt) * checkin_init() * * Does an initial check in, just enough to create the new ,v file - * XXX not full implemented yet. + * XXX not fully implemented yet. */ static void checkin_init(struct checkin_params *pb) |