summaryrefslogtreecommitdiffstats
path: root/usr.bin/xinstall/xinstall.c
diff options
context:
space:
mode:
authoralex <alex@FreeBSD.org>1998-01-13 02:12:43 +0000
committeralex <alex@FreeBSD.org>1998-01-13 02:12:43 +0000
commit3d7686dc1c5e0216bbb43929905217dbdb11dc18 (patch)
treecf9d09248de221ac077c10cd4d773840f5abdf38 /usr.bin/xinstall/xinstall.c
parentd53da9d8fe3ec999684208c49333e3dc46fd5608 (diff)
downloadFreeBSD-src-3d7686dc1c5e0216bbb43929905217dbdb11dc18.zip
FreeBSD-src-3d7686dc1c5e0216bbb43929905217dbdb11dc18.tar.gz
Change MAP_FAILED to type void *.
Typo fix.
Diffstat (limited to 'usr.bin/xinstall/xinstall.c')
-rw-r--r--usr.bin/xinstall/xinstall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index a4a1bed..2a6c062 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
static const char rcsid[] =
- "$Id: xinstall.c,v 1.28 1998/01/09 06:05:13 jb Exp $";
+ "$Id: xinstall.c,v 1.29 1998/01/11 11:43:36 peter Exp $";
#endif /* not lint */
/*-
@@ -57,7 +57,7 @@ static const char rcsid[] =
* set all attributes except the immutable flags, then rename, then
* set the immutable flags. It's annoying that the immutable flags
* defeat the atomicicity of rename - it seems that there must be
- * o a window where the target is not immutable.
+ * a window where the target is not immutable.
*/
#include <sys/param.h>
@@ -84,7 +84,7 @@ static const char rcsid[] =
/* Bootstrap aid - this doesn't exist in most older releases */
#ifndef MAP_FAILED
-#define MAP_FAILED ((caddr_t)-1) /* from <sys/mman.h> */
+#define MAP_FAILED ((void *)-1) /* from <sys/mman.h> */
#endif
int debug, docompare, docopy, dodir, dopreserve, dostrip, verbose, nommap;
OpenPOWER on IntegriCloud