aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-08-18 02:10:05 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-08-18 02:10:05 +0000
commit4b82d708ae97800b9b0534c220d0c08907810e2f (patch)
treefdd9f4fb2bc2ff4678c78d9c9625fd184068ee50 /usr.sbin/inetd
parentd8a6b1e31eb1ef49d3f3034670335204d4012e37 (diff)
downloadsrc-4b82d708ae97800b9b0534c220d0c08907810e2f.tar.gz
src-4b82d708ae97800b9b0534c220d0c08907810e2f.zip
Bruce says that %p is intended to format void pointers only. So use a void *
cast. There are pointers and then there are _pointers_. One day I'll figure out which are which. 8-)
Notes
Notes: svn path=/head/; revision=38417
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index 72c8c0d5cdeb..5d55861ac063 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)from: inetd.c 8.4 (Berkeley) 4/13/94";
#endif
static const char rcsid[] =
- "$Id: inetd.c,v 1.38 1998/07/24 08:28:33 ache Exp $";
+ "$Id: inetd.c,v 1.39 1998/08/17 06:16:59 jb Exp $";
#endif /* not lint */
/*
@@ -1747,7 +1747,7 @@ print_service(action, sep)
#ifdef LOGIN_CAP
sep->se_class,
#endif
- sep->se_bi, sep->se_server);
+ (void *) sep->se_bi, sep->se_server);
}
/*