| Index: components/nacl/loader/nonsfi/irt_memory.cc
|
| diff --git a/components/nacl/loader/nonsfi/irt_memory.cc b/components/nacl/loader/nonsfi/irt_memory.cc
|
| index 06f76ea0326f491934b720b13720a2d84df47d3f..89a3719306ce147d89371203867138a359388a53 100644
|
| --- a/components/nacl/loader/nonsfi/irt_memory.cc
|
| +++ b/components/nacl/loader/nonsfi/irt_memory.cc
|
| @@ -58,7 +58,7 @@ int IrtMMap(void** addr, size_t len, int prot, int flags,
|
| if (host_prot & PROT_EXEC) {
|
| if (mprotect(result, len, host_prot) != 0) {
|
| // This aborts here because it cannot easily undo the mmap() call.
|
| - LOG_ERRNO(FATAL) << "IrtMMap: mprotect to turn on PROT_EXEC failed.";
|
| + PLOG(FATAL) << "IrtMMap: mprotect to turn on PROT_EXEC failed.";
|
| }
|
| }
|
|
|
|
|