mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- fixed a warning caused by the LZMA-SDK update.
This commit is contained in:
parent
884db96cbb
commit
ce88830a59
1 changed files with 2 additions and 2 deletions
|
@ -226,8 +226,8 @@ int copy_zip_file(FILE *zip, file_entry_t *file, FILE *ozip, CentralDirectoryEnt
|
|||
|
||||
// PRIVATE FUNCTION PROTOTYPES ---------------------------------------------
|
||||
|
||||
static void *SzAlloc(void *p, size_t size) { p = p; return malloc(size); }
|
||||
static void SzFree(void *p, void *address) { p = p; free(address); }
|
||||
static void *SzAlloc(ISzAllocPtr p, size_t size) { p = p; return malloc(size); }
|
||||
static void SzFree(ISzAllocPtr p, void *address) { p = p; free(address); }
|
||||
|
||||
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue