mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-31 15:28:21 -04:00
Version 0.9.3
- minor bugfix thanks to XCode built-in static analyzer
This commit is contained in:
parent
83f1158933
commit
e6e4e69b4b
12 changed files with 717 additions and 50 deletions
|
@ -60,10 +60,10 @@ VOID
|
|||
INT32
|
||||
EFIAPI
|
||||
LzmaCompress (
|
||||
CONST VOID *Source,
|
||||
SizeT SourceSize,
|
||||
VOID *Destination,
|
||||
SizeT *DestinationSize
|
||||
CONST UINT8 *Source,
|
||||
UINT32 SourceSize,
|
||||
UINT8 *Destination,
|
||||
UINT32 *DestinationSize
|
||||
)
|
||||
{
|
||||
SRes LzmaResult;
|
||||
|
|
|
@ -27,10 +27,10 @@ extern "C" {
|
|||
INT32
|
||||
EFIAPI
|
||||
LzmaCompress (
|
||||
const VOID *Source,
|
||||
SizeT SourceSize,
|
||||
VOID *Destination,
|
||||
SizeT *DestinationSize
|
||||
const UINT8 *Source,
|
||||
UINT32 SourceSize,
|
||||
UINT8 *Destination,
|
||||
UINT32 *DestinationSize
|
||||
);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue