this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix error message reporting mmap_min_addr not being low enough (#193)

+1 -1
+1 -1
src/libdyld/MachOObject.cpp
··· 309 309 310 310 if (errno == EPERM && uintptr_t(mappingAddr) < getMinMappingAddr()) 311 311 { 312 - ss << "This executable is not position independent and your vm.mmap_min_addr is too low to load it. "; 312 + ss << "This executable is not position independent and your vm.mmap_min_addr is not low enough to load it. "; 313 313 ss << "As low as " << uintptr_t(mappingAddr) << " is needed."; 314 314 } 315 315 else