Skip to content

Commit

Permalink
[SQUASH ON REBASE]AdvLoggerPkg: BaseArm: Fix Typo
Browse files Browse the repository at this point in the history
This patch removes an extra parenthesis that somehow was not
caught in CI, but does fail to build.
  • Loading branch information
os-d committed Sep 27, 2024
1 parent ffffac7 commit b83ae56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ValidateInfoBlock (
}

if (PA_FROM_PTR (LOG_CURRENT_FROM_ALI (mLoggerInfo)) > mMaxAddress) ||
(mLoggerInfo->LogCurrentOffset < mLoggerInfo->LogBufferOffset))
(mLoggerInfo->LogCurrentOffset < mLoggerInfo->LogBufferOffset)
{
return FALSE;
}
Expand Down

0 comments on commit b83ae56

Please sign in to comment.