diff --git a/HBFA/UefiHostFuzzTestCasePkg/TestStub/VirtioPciDevice10StubLib/VirtioPciDevice10StubLib.c b/HBFA/UefiHostFuzzTestCasePkg/TestStub/VirtioPciDevice10StubLib/VirtioPciDevice10StubLib.c index 68d0fcf..dd8972e 100644 --- a/HBFA/UefiHostFuzzTestCasePkg/TestStub/VirtioPciDevice10StubLib/VirtioPciDevice10StubLib.c +++ b/HBFA/UefiHostFuzzTestCasePkg/TestStub/VirtioPciDevice10StubLib/VirtioPciDevice10StubLib.c @@ -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; diff --git a/HBFA/UefiHostTestTools/RunLibFuzzer.py b/HBFA/UefiHostTestTools/RunLibFuzzer.py index e8dc3fc..9e087ad 100644 --- a/HBFA/UefiHostTestTools/RunLibFuzzer.py +++ b/HBFA/UefiHostTestTools/RunLibFuzzer.py @@ -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