diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-07-01 18:25:49 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-07-01 18:25:49 +0000 |
commit | 0405676ceb04ce85a6dbf0cb4187ecca4cdd1656 (patch) | |
tree | 8b6df9b1da46017b7464c87fd92efb9f219101d4 /usr.bin/xinstall | |
parent | 0c922cc2c28276924487216037e2951d00ac584f (diff) |
setmode(3) returns void *, not mode_t *. ok millert@
Diffstat (limited to 'usr.bin/xinstall')
-rw-r--r-- | usr.bin/xinstall/xinstall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index f919bd95fec..8d446094151 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xinstall.c,v 1.40 2004/02/10 07:33:23 jmc Exp $ */ +/* $OpenBSD: xinstall.c,v 1.41 2004/07/01 18:25:48 otto Exp $ */ /* $NetBSD: xinstall.c,v 1.9 1995/12/20 10:25:17 jonathan Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93"; #endif -static char rcsid[] = "$OpenBSD: xinstall.c,v 1.40 2004/02/10 07:33:23 jmc Exp $"; +static char rcsid[] = "$OpenBSD: xinstall.c,v 1.41 2004/07/01 18:25:48 otto Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -93,7 +93,7 @@ int main(int argc, char *argv[]) { struct stat from_sb, to_sb; - mode_t *set; + void *set; u_int32_t fset; u_int iflags; int ch, no_target; |