diff options
Diffstat (limited to 'CPP/7zip/Archive/LzhHandler.cpp')
-rw-r--r-- | CPP/7zip/Archive/LzhHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/7zip/Archive/LzhHandler.cpp b/CPP/7zip/Archive/LzhHandler.cpp index adfe59d..8959300 100644 --- a/CPP/7zip/Archive/LzhHandler.cpp +++ b/CPP/7zip/Archive/LzhHandler.cpp | |||
@@ -473,8 +473,8 @@ Z7_COM7F_IMF(CHandler::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *val | |||
473 | break; | 473 | break; |
474 | } | 474 | } |
475 | case kpidIsDir: prop = item.IsDir(); break; | 475 | case kpidIsDir: prop = item.IsDir(); break; |
476 | case kpidSize: prop = item.Size; break; | 476 | case kpidSize: prop = (UInt64)item.Size; break; |
477 | case kpidPackSize: prop = item.PackSize; break; | 477 | case kpidPackSize: prop = (UInt64)item.PackSize; break; |
478 | case kpidCRC: prop = (UInt32)item.CRC; break; | 478 | case kpidCRC: prop = (UInt32)item.CRC; break; |
479 | case kpidHostOS: PAIR_TO_PROP(g_OsPairs, item.OsId, prop); break; | 479 | case kpidHostOS: PAIR_TO_PROP(g_OsPairs, item.OsId, prop); break; |
480 | case kpidMTime: | 480 | case kpidMTime: |