diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-08-29 13:39:21 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-08-29 13:39:21 +0300 |
commit | 27414daadf5727e8ab942374b5ec1c8990122878 (patch) | |
tree | f0c214fa98ef24f296e288529e2aefb456a75794 /src/common/physmem.h | |
parent | Fix x86 assembler on GCC 3. (diff) | |
download | xz-27414daadf5727e8ab942374b5ec1c8990122878.tar.xz |
Fix sysctl() usage.
This fixes build on *BSDs and Darwin.
Thanks to Jukka Salmi for the patches.
Richard Koch reported the problem too.
Diffstat (limited to '')
-rw-r--r-- | src/common/physmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/physmem.h b/src/common/physmem.h index 63482c6c..0dc77e97 100644 --- a/src/common/physmem.h +++ b/src/common/physmem.h @@ -104,7 +104,7 @@ physmem(void) uint64_t u64; } mem; size_t mem_ptr_size = sizeof(mem.u64); - if (!sysctl(name, 2, &mem.u64, &mem_ptr_size, NULL, NULL)) { + if (!sysctl(name, 2, &mem.u64, &mem_ptr_size, NULL, 0)) { // IIRC, 64-bit "return value" is possible on some 64-bit // BSD systems even with HW_PHYSMEM (instead of HW_PHYSMEM64), // so support both. |