From 798300be85f1053c70f183a2ac9e71458c7c1dae Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 19 Feb 2007 11:40:01 +0000 Subject: Fix const inconsistencies, void pointer artithmetic and a few other things. now gcc -Wall and lint are more happy. ok joris@ xsa@ --- usr.bin/cvs/rcs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/cvs/rcs.h') 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 * 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; -- cgit v1.2.3