mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 747322 - Fix jemalloc mmap wrapper for s390x. r=jlebar,a=npotb
This commit is contained in:
parent
2df5738ccc
commit
64e116361b
@ -405,9 +405,9 @@ void *_mmap(void *addr, size_t length, int prot, int flags,
|
||||
struct {
|
||||
void *addr;
|
||||
size_t length;
|
||||
int prot;
|
||||
int flags;
|
||||
int fd;
|
||||
long prot;
|
||||
long flags;
|
||||
long fd;
|
||||
off_t offset;
|
||||
} args = { addr, length, prot, flags, fd, offset };
|
||||
return (void *) syscall(SYS_mmap, &args);
|
||||
|
Loading…
Reference in New Issue
Block a user