Don't pass a pointer to a 'long' to a function that expects an 'int *'.

Submitted by:	Roop Nanuwa <roop@hqst.com>
PR:		62615
This commit is contained in:
David Schultz 2004-02-16 10:03:44 +00:00
parent a94707138b
commit 4f70638ec2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125868

View File

@ -194,9 +194,9 @@ unsigned long
ypxfr_get_order(char *domain, char *map, char *source, const int yplib)
{
if (yplib) {
unsigned long order;
unsigned int order;
int res;
if ((res = yp_order(domain, map, (int *)&order))) {
if ((res = yp_order(domain, map, &order))) {
switch (res) {
case YPERR_DOMAIN:
yp_errno = YPXFR_NODOM;