diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-02-20 16:30:19 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-02-20 16:30:19 +0000 |
commit | fe17a7db096de6700a5ec16286e98f633a323ffb (patch) | |
tree | 117a7d0dc246b4a7fa25e7d9ee5443145dca896a | |
parent | f5c73276ac58ea0a207654c3aa42f3d32d036e47 (diff) |
- more spacing
-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 a863ea9eaf7..95a6204fc39 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.101 2006/02/20 16:27:58 niallo Exp $ */ +/* $OpenBSD: ci.c,v 1.102 2006/02/20 16:30:18 niallo Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -1037,7 +1037,7 @@ checkin_parsekeyword(char *keystring, RCSNUM **rev, time_t *date, /* only parse revision if one is not already set */ if (*rev != NULL) break; - for ((p =strtok(keystring, " ")); p; + for ((p = strtok(keystring, " ")); p; (p = strtok(NULL, " "))) { if (i < KW_NUMTOKS_REVISION - 1) tokens[i++] = p; |