diff options
-rw-r--r-- | toys/other/devmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/devmem.c b/toys/other/devmem.c index 6e270df0..ced6c518 100644 --- a/toys/other/devmem.c +++ b/toys/other/devmem.c @@ -20,7 +20,7 @@ config DEVMEM void devmem_main(void) { - int writing = toys.optc == 3, page_size = getpagesize(), bytes = 4, fd; + int writing = toys.optc == 3, page_size = sysconf(_SC_PAGESIZE), bytes = 4,fd; unsigned long long addr = atolx(toys.optargs[0]), data = 0, map_off, map_len; void *map, *p; |