mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-28 05:54:50 -04:00
Version 0.18.10
- fixed GCC compilation warnings
This commit is contained in:
parent
6b090b667f
commit
970ae65b24
5 changed files with 17 additions and 14 deletions
|
@ -27,8 +27,8 @@ UINT32 Count
|
|||
return Operand << Count;
|
||||
}
|
||||
|
||||
static void * AllocForLzma(void *p, size_t size) { return malloc(size); }
|
||||
static void FreeForLzma(void *p, void *address) { free(address); }
|
||||
static void * AllocForLzma(void *p, size_t size) { (void)p; return malloc(size); }
|
||||
static void FreeForLzma(void *p, void *address) { (void)p; free(address); }
|
||||
static ISzAlloc SzAllocForLzma = { &AllocForLzma, &FreeForLzma };
|
||||
|
||||
/*
|
||||
|
@ -156,4 +156,4 @@ VOID *Destination
|
|||
else {
|
||||
return ERR_INVALID_PARAMETER;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue