Skip to content

Commit ba003a0

Browse files
committed
NTSTATUS cast fix
1 parent 82297f6 commit ba003a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vmaware.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9745,7 +9745,7 @@ struct VM {
97459745

97469746
using POBJECT_DIRECTORY_INFORMATION = OBJECT_DIRECTORY_INFORMATION*;
97479747
constexpr auto DIRECTORY_QUERY = 0x0001;
9748-
constexpr NTSTATUS STATUS_NO_MORE_ENTRIES = 0x8000001A;
9748+
constexpr NTSTATUS STATUS_NO_MORE_ENTRIES = static_cast<NTSTATUS>(0x8000001A);
97499749

97509750
HANDLE dir = nullptr;
97519751
OBJECT_ATTRIBUTES object_attributes{};

0 commit comments

Comments
 (0)