Skip to content

Commit

Permalink
Merge pull request #12 from tklengyel/fix
Browse files Browse the repository at this point in the history
Fix edk2 coverage build due to changed definition of EFI_PCI_IO_PROTOCOL_IO_MEM
  • Loading branch information
el-tipton authored May 8, 2024
2 parents 1186805 + eaa0b75 commit 75e6588
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -813,9 +813,9 @@ EFIAPI
PciIoRead (
IN EFI_PCI_IO_PROTOCOL *PciIo,
IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
IN UINT16 Offset,
IN UINT16 Count,
IN OUT UINT8 *Buffer
IN UINT32 Offset,
IN UINTN Count,
IN OUT VOID *Buffer
) {
UINT16 Len = 0;

Expand Down
4 changes: 2 additions & 2 deletions HBFA/UefiHostTestTools/RunLibFuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ def main():
" should start with {}.".format(HBFA_PATH))
os._exit(0)
elif not os.path.exists(os.path.join(HBFA_PATH, args.ModuleFile)):
print("ModuleFile path: {}".format(os.path.abspath(args.InputSeed))
+ " does not exist or is not in the relative path for HBFA")
print("ModuleFile path: {}".format(args.ModuleFile)
+ " does not exist or is not in the relative path for HBFA: {}".format(os.path.abspath(HBFA_PATH)))
os._exit(0)
else:
ModuleFilePath = args.ModuleFile
Expand Down

0 comments on commit 75e6588

Please sign in to comment.