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.c | |
parent | 4d06b49d12c20a774d99a1fd388817d66779521a (diff) |
fix const related warnings; ok millert@
Diffstat (limited to 'usr.bin/cvs/util.c')
-rw-r--r-- | usr.bin/cvs/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c index 757c07a8663..2d76d45f4de 100644 --- a/usr.bin/cvs/util.c +++ b/usr.bin/cvs/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.160 2017/06/01 08:08:24 joris Exp $ */ +/* $OpenBSD: util.c,v 1.161 2017/08/28 19:33:20 otto Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2005, 2006 Joris Vink <joris@openbsd.org> @@ -881,7 +881,7 @@ cvs_yesno(void) * else, 0 or -1 if an error occur. */ int -cvs_exec(char *prog, const char *in, int needwait) +cvs_exec(char *prog, char *in, int needwait) { pid_t pid; size_t size; |