Add missing (parentehses.)

BUG=247, chromium:94107
TEST=Minidump file sizes should be manageable
Review URL: http://breakpad.appspot.com/300002

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@827 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mark@chromium.org 2011-08-26 21:37:59 +00:00
parent 60a883212f
commit ce8d2156e8

View File

@ -285,7 +285,7 @@ size_t MinidumpGenerator::CalculateStackSize(mach_vm_address_t start_addr) {
if (result != KERN_SUCCESS ||
next_region_base != proposed_next_region_base ||
submap_info.user_tag != tag ||
submap_info.protection & VM_PROT_READ == 0) {
(submap_info.protection & VM_PROT_READ) == 0) {
break;
}