Skip to content

Commit

Permalink
Fixing uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
kuqin12 committed Dec 12, 2023
1 parent 991038d commit 1ba6fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableMap.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ PageTableLibMapInLevel (
// MU_CHANGE: Apply propagate bits for non-root entries.
// Otherwise, start with PleBAttribute sans present bit.
// OneOfPagingEntry.Pnle.Uint64 = 0;
if (Level != 1 && Level != 2 && Level != 3) {
if ((Level != 1) && (Level != 2) && (Level != 3)) {
OneOfPagingEntry.Pnle.Uint64 = (PleBAttribute.Uint64 & PropagateMask.Uint64) & (~BIT0);
} else {
PageTableLibSetPle (Level, &OneOfPagingEntry, 0, &PleBAttribute, &PropagateMask);
Expand Down

0 comments on commit 1ba6fec

Please sign in to comment.