X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2FSource%2FC%2FLzmaCompress%2FLzmaCompress.c;fp=BaseTools%2FSource%2FC%2FLzmaCompress%2FLzmaCompress.c;h=bf4706ee2357e96b6e365942a55877356ea80d39;hp=bebdb9aa84a15da524443b13b63dc5aede6dbd56;hb=4e38bb607a75f9e7846a6cf8d04e451cf19c2d8b;hpb=1d3d5e3256018476e37ed6621fecbdbcfb2da58e diff --git a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c index bebdb9aa84..bf4706ee23 100644 --- a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c +++ b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c @@ -1,9 +1,9 @@ /** @file LZMA Compress/Decompress tool (LzmaCompress) - Based on LZMA SDK 18.05: + Based on LZMA SDK 19.00: LzmaUtil.c -- Test application for LZMA compression - 2018-04-30 : Igor Pavlov : Public domain + 2019-02-21 : Igor Pavlov : Public domain Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -39,7 +39,7 @@ const char *kCantAllocateMessage = "Can not allocate memory"; const char *kDataErrorMessage = "Data error"; const char *kInvalidParamValMessage = "Invalid parameter value"; -static Bool mQuietMode = False; +static BoolInt mQuietMode = False; static CONVERTER_TYPE mConType = NoConverter; UINT64 mDictionarySize = 28; @@ -244,7 +244,7 @@ int main2(int numArgs, const char *args[], char *rs) CFileOutStream outStream; int res; int encodeMode = 0; - Bool modeWasSet = False; + BoolInt modeWasSet = False; const char *inputFile = NULL; const char *outputFile = "file.tmp"; int param;