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-)
This commit is contained in:
John Birrell 1998-08-18 02:10:05 +00:00
parent d8a6b1e31e
commit 4b82d708ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38417

View file

@ -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);
}
/*