Skip to content

Commit

Permalink
SecureBootConfigImpl.c: Fixing type mismatches
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Gołaś <filip.golas@3mdeb.com>
  • Loading branch information
philipandag committed Jul 5, 2024
1 parent 9ec53e5 commit 64e9378
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2507,7 +2507,7 @@ UpdateDeletePage (
//
// GuidToString (&Cert->SignatureOwner, GuidStr, 100);
UINTN size = 100;
X509GetCommonName((UINT8*)Cert->SignatureData, (UINTN)CertList->SignatureSize, (UINT8*)GuidStr, &size);
X509GetCommonName((UINT8*)Cert->SignatureData, (UINTN)CertList->SignatureSize, (CHAR8*)GuidStr, &size);

GuidID = HiiSetString (PrivateData->HiiHandle, 0, GuidStr, NULL);
HiiCreateCheckBoxOpCode (
Expand Down

0 comments on commit 64e9378

Please sign in to comment.