diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-28 19:33:21 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-28 19:33:21 +0000 |
commit | 9b8e4be2ee27408fad5516f397b1dc7aaf2b5539 (patch) | |
tree | 962c24128b82b7742bb1ee3660735e8d0cd5c59a /usr.bin/cvs/util.h | |
parent | 4d06b49d12c20a774d99a1fd388817d66779521a (diff) |
fix const related warnings; ok millert@
Diffstat (limited to 'usr.bin/cvs/util.h')
-rw-r--r-- | usr.bin/cvs/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/util.h b/usr.bin/cvs/util.h index bf2dc284b53..b465ee61736 100644 --- a/usr.bin/cvs/util.h +++ b/usr.bin/cvs/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.30 2010/11/11 21:00:59 nicm Exp $ */ +/* $OpenBSD: util.h,v 1.31 2017/08/28 19:33:20 otto Exp $ */ /* * Copyright (c) 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -41,7 +41,7 @@ int cvs_unlink(const char *); int cvs_rmdir(const char *); char **cvs_makeargv(const char *, int *); void cvs_freeargv(char **, int); -int cvs_exec(char *, const char *, int); +int cvs_exec(char *, char *, int); u_int cvs_revision_select(RCSFILE *, char *); struct rcs_line { |