simplify cast.

This commit is contained in:
christos 2017-01-10 17:46:47 +00:00
parent 01b3cff52b
commit 6ddfa6c010
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysctl.c,v 1.35 2015/02/05 16:05:20 christos Exp $ */
/* $NetBSD: sysctl.c,v 1.36 2017/01/10 17:46:47 christos Exp $ */
/*-
* Copyright (c) 1993
@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)sysctl.c 8.2 (Berkeley) 1/4/94";
#else
__RCSID("$NetBSD: sysctl.c,v 1.35 2015/02/05 16:05:20 christos Exp $");
__RCSID("$NetBSD: sysctl.c,v 1.36 2017/01/10 17:46:47 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@ -313,7 +313,7 @@ user_sysctl(const int *name, unsigned int namelen,
if (d2 != NULL)
memcpy(d2, d1, d);
sz += d;
d2 = (struct sysctldesc *)(void *)((char *)d2 + d);
d2 = (void *)((char *)(void *)d2 + d);
if (node != NULL)
break;
}