fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / linux / remap_file_pages.c
index f95c4cc..a9699ce 100644 (file)
@@ -2,7 +2,7 @@
 #include <sys/mman.h>
 #include "syscall.h"
 
-int remap_file_pages(void *addr, size_t size, int prot, ssize_t pgoff, int flags)
+int remap_file_pages(void *addr, size_t size, int prot, size_t pgoff, int flags)
 {
        return syscall(SYS_remap_file_pages, addr, size, prot, pgoff, flags);
 }