Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Crypto/7zAES/DllExports.cpp')
-rwxr-xr-x7zip/Crypto/7zAES/DllExports.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/Crypto/7zAES/DllExports.cpp b/7zip/Crypto/7zAES/DllExports.cpp
index 3de7078e..8766ded4 100755
--- a/7zip/Crypto/7zAES/DllExports.cpp
+++ b/7zip/Crypto/7zAES/DllExports.cpp
@@ -86,7 +86,7 @@ STDAPI GetMethodProperty(UINT32 index, PROPID propID, PROPVARIANT *value)
{
case NMethodPropID::kID:
{
- const char id[] = { 0x06, (char)0xF1, 0x07, 0x01 };
+ const char id[] = { 0x06, (char)(unsigned char)0xF1, 0x07, 0x01 };
if ((value->bstrVal = ::SysAllocStringByteLen(id, sizeof(id))) != 0)
value->vt = VT_BSTR;
return S_OK;