diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-09-27 10:20:56 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-09-27 10:20:56 +0900 |
commit | 0c6f36668a11902903d85ada61a812d297d02de5 (patch) | |
tree | 0e976fcb5b4291258fa80c8f07249cad99d49cc6 /vm_dump.c | |
parent | 293c6c8cc3cd9a9cb2910672589ee3631e1f1653 (diff) | |
download | bundler-0c6f36668a11902903d85ada61a812d297d02de5.tar.gz |
Adjusted spaces [ci skip]
Diffstat (limited to 'vm_dump.c')
-rw-r--r-- | vm_dump.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1011,7 +1011,8 @@ rb_vm_bugreport(const void *ctx) if (map.is_submap) { // We only look at main addresses depth++; - } else { + } + else { fprintf(stderr, "%lx-%lx %s%s%s", addr, (addr+size), ((map.protection & VM_PROT_READ) != 0 ? "r" : "-"), ((map.protection & VM_PROT_WRITE) != 0 ? "w" : "-"), |