Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rocallahan committed May 10, 2024
1 parent e55f22e commit 812a853
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/AddressSpace.cc
Original file line number Diff line number Diff line change
Expand Up @@ -666,8 +666,12 @@ static const char* stringify_flags(int flags) {
return " [thread_locals]";
case AddressSpace::Mapping::IS_PATCH_STUBS:
return " [patch_stubs]";
case AddressSpace::Mapping::IS_RR_PAGE:
return " [rr_page]";
case AddressSpace::Mapping::IS_RR_VDSO_PAGE:
return " [rr_vdso_page]";
default:
return "[unknown_flags]";
return " [unknown_flags]";
}
}

Expand Down

0 comments on commit 812a853

Please sign in to comment.