diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-19 11:40:01 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-19 11:40:01 +0000 |
commit | 798300be85f1053c70f183a2ac9e71458c7c1dae (patch) | |
tree | 69b9a3f7595052973872142f83c8c30289381dd6 /usr.bin/cvs/cmd.c | |
parent | 27d58412abaa0705237ccfac83add9738c79b6ec (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/cmd.c')
-rw-r--r-- | usr.bin/cvs/cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c index 44791037724..89c23c86c69 100644 --- a/usr.bin/cvs/cmd.c +++ b/usr.bin/cvs/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.55 2006/11/27 14:19:53 xsa Exp $ */ +/* $OpenBSD: cmd.c,v 1.56 2007/02/19 11:40:00 otto Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -95,7 +95,7 @@ cvs_findcmd(const char *cmd) } struct cvs_cmd * -cvs_findcmdbyreq(int reqid) +cvs_findcmdbyreq(u_int reqid) { int i; struct cvs_cmd *cmdp; |