From 4b82d708ae97800b9b0534c220d0c08907810e2f Mon Sep 17 00:00:00 2001 From: John Birrell Date: Tue, 18 Aug 1998 02:10:05 +0000 Subject: [PATCH] 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-) --- usr.sbin/inetd/inetd.c | 4 ++-- 1 file 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); } /*