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/Archive/Lzh/LzhItem.h')
-rwxr-xr-x7zip/Archive/Lzh/LzhItem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/Archive/Lzh/LzhItem.h b/7zip/Archive/Lzh/LzhItem.h
index 448d8b33..66d4ed75 100755
--- a/7zip/Archive/Lzh/LzhItem.h
+++ b/7zip/Archive/Lzh/LzhItem.h
@@ -150,7 +150,7 @@ public:
AString GetName() const
{
AString dirName = GetDirName();
- dirName.Replace((char)0xFF, '\\');
+ dirName.Replace((char)(unsigned char)0xFF, '\\');
if (!dirName.IsEmpty())
{
char c = dirName[dirName.Length() - 1];