Skip to content

Commit

Permalink
- fixed a warning caused by the LZMA-SDK update.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Jan 21, 2018
1 parent 884db96 commit ce88830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/zipdir/zipdir.c
Expand Up @@ -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 ----------------------------------------------

Expand Down

0 comments on commit ce88830

Please sign in to comment.