summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/rcs.h
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2007-02-19 11:40:01 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2007-02-19 11:40:01 +0000
commit798300be85f1053c70f183a2ac9e71458c7c1dae (patch)
tree69b9a3f7595052973872142f83c8c30289381dd6 /usr.bin/cvs/rcs.h
parent27d58412abaa0705237ccfac83add9738c79b6ec (diff)
Fix const inconsistencies, void pointer artithmetic and a few other
things. now gcc -Wall and lint are more happy. ok joris@ xsa@
Diffstat (limited to 'usr.bin/cvs/rcs.h')
-rw-r--r--usr.bin/cvs/rcs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/rcs.h b/usr.bin/cvs/rcs.h
index 51ef1e500ff..10d740e0037 100644
--- a/usr.bin/cvs/rcs.h
+++ b/usr.bin/cvs/rcs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.h,v 1.74 2007/02/12 14:35:28 xsa Exp $ */
+/* $OpenBSD: rcs.h,v 1.75 2007/02/19 11:40:00 otto Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -177,7 +177,7 @@ TAILQ_HEAD(rcs_dlist, rcs_delta);
struct rcs_delta {
RCSNUM *rd_num;
RCSNUM *rd_next;
- u_int rd_flags;
+ int rd_flags;
struct tm rd_date;
char *rd_author;
char *rd_state;
@@ -197,7 +197,7 @@ typedef struct rcs_file {
int rf_inattic;
char *rf_path;
mode_t rf_mode;
- u_int rf_flags;
+ int rf_flags;
RCSNUM *rf_head;
RCSNUM *rf_branch;