Skip to content

Commit 88193cc

Browse files
Minor fixes
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
1 parent 9d502de commit 88193cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

shared/source/memory_manager/physical_address_allocator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2021 Intel Corporation
2+
* Copyright (C) 2018-2022 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -64,7 +64,7 @@ class PhysicalAddressAllocatorHw : public PhysicalAddressAllocator {
6464
}
6565
}
6666

67-
~PhysicalAddressAllocatorHw() override {
67+
virtual ~PhysicalAddressAllocatorHw() override {
6868
if (bankAllocators) {
6969
delete bankAllocators;
7070
}

shared/source/os_interface/windows/wddm/wddm_residency_logger.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2020-2021 Intel Corporation
2+
* Copyright (C) 2020-2022 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -63,7 +63,7 @@ class WddmResidencyLogger {
6363
endTime = std::chrono::high_resolution_clock::now();
6464

6565
int64_t timeDiff = 0;
66-
IoFunctions::fprintf(pagingLog, "makeResidentPagingFence: %x startWaitPagingFence: %x stopWaitPagingFence: %lld\n",
66+
IoFunctions::fprintf(pagingLog, "makeResidentPagingFence: %lld startWaitPagingFence: %lld stopWaitPagingFence: %lld\n",
6767
makeResidentPagingFence,
6868
startWaitPagingFence,
6969
stopWaitPagingFence);

0 commit comments

Comments
 (0)