Fix a typo. q is already a pointer.
Reported by: ache Pointy hat to: kib
This commit is contained in:
parent
23aa8eeafc
commit
59e2759db8
@ -133,7 +133,7 @@ __xuname(int namesize, void *namebuf)
|
||||
mib[1] = HW_MACHINE;
|
||||
len = namesize;
|
||||
oerrno = errno;
|
||||
if (sysctl(mib, 2, &q, &len, NULL, 0) == -1) {
|
||||
if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
|
||||
if (errno == ENOMEM)
|
||||
errno = oerrno;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user