summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/hist.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-07-29 17:04:43 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-07-29 17:04:43 +0000
commitdd7208a2a83634e330093dbca7b961ce4e77645e (patch)
tree9f1cafe170c5c49646a527866693a47cce53f35c /usr.bin/cvs/hist.c
parent278df2e880589566805d51aa43d1c59b25e48d88 (diff)
minor KNF;
Diffstat (limited to 'usr.bin/cvs/hist.c')
-rw-r--r--usr.bin/cvs/hist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/hist.c b/usr.bin/cvs/hist.c
index 448254ba16d..a752f39aca7 100644
--- a/usr.bin/cvs/hist.c
+++ b/usr.bin/cvs/hist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hist.c,v 1.7 2005/07/25 12:05:43 xsa Exp $ */
+/* $OpenBSD: hist.c,v 1.8 2005/07/29 17:04:42 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -49,7 +49,7 @@ static int cvs_hist_fmt(const struct cvs_hent *, char *, size_t);
* Open a CVS history file.
* Returns the number of entries in the file on success, or -1 on error.
*/
-CVSHIST*
+CVSHIST *
cvs_hist_open(const char *path)
{
CVSHIST *histp;
@@ -114,7 +114,7 @@ cvs_hist_close(CVSHIST *histp)
* Returns the next entry from the file on success, or NULL on failure or if
* no entries are left.
*/
-struct cvs_hent*
+struct cvs_hent *
cvs_hist_getnext(CVSHIST *histp)
{
if (histp->chf_cindex == histp->chf_nbhent) {