Skip to content

Commit 5f5de6c

Browse files
committed
Fixed x64 warning.
1 parent 7bfcb20 commit 5f5de6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NativeCore/Shared/DistormHelper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ _CodeInfo CreateCodeInfo(const RC_Pointer address, const RC_Size length, const R
9999
_CodeInfo info = {};
100100
info.codeOffset = reinterpret_cast<_OffsetType>(virtualAddress);
101101
info.code = reinterpret_cast<const uint8_t*>(address);
102-
info.codeLen = length;
102+
info.codeLen = static_cast<int>(length);
103103
info.features = DF_NONE;
104104

105105
#ifdef RECLASSNET32

0 commit comments

Comments
 (0)