Commit 9cc7654e authored by Mike Hommey's avatar Mike Hommey
Browse files

Bug 747322 - Fix jemalloc mmap wrapper for s390x. r=jlebar,a=npotb

parent b67451d6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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);