BaseTools Lzma: Update LZMA SDK version to 18.05
https://bugzilla.tianocore.org/show_bug.cgi?id=1006 New formal release in https://www.7-zip.org/sdk.html is 18.05. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
/** @file
|
||||
LZMA Compress/Decompress tool (LzmaCompress)
|
||||
|
||||
Based on LZMA SDK 16.04:
|
||||
Based on LZMA SDK 18.05:
|
||||
LzmaUtil.c -- Test application for LZMA compression
|
||||
2016-10-04 : Igor Pavlov : Public domain
|
||||
2018-04-30 : Igor Pavlov : Public domain
|
||||
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
@ -341,14 +341,14 @@ int main2(int numArgs, const char *args[], char *rs)
|
||||
if (!mQuietMode) {
|
||||
printf("Encoding\n");
|
||||
}
|
||||
res = Encode(&outStream.s, &inStream.s, fileSize);
|
||||
res = Encode(&outStream.vt, &inStream.vt, fileSize);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!mQuietMode) {
|
||||
printf("Decoding\n");
|
||||
}
|
||||
res = Decode(&outStream.s, &inStream.s, fileSize);
|
||||
res = Decode(&outStream.vt, &inStream.vt, fileSize);
|
||||
}
|
||||
|
||||
File_Close(&outStream.file);
|
||||
|
Reference in New Issue
Block a user