mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
fixed clang warnings in zlibWrapper
This commit is contained in:
parent
38b590ad69
commit
d007eb5f9f
3 changed files with 10 additions and 9 deletions
|
|
@ -85,7 +85,7 @@ typedef struct {
|
|||
ZSTD_outBuffer outBuffer;
|
||||
ZWRAP_state_t comprState;
|
||||
unsigned long long pledgedSrcSize;
|
||||
} ZWRAP_CCtx;
|
||||
} ZWRAP_CCtx __attribute__ ((aligned (4)));
|
||||
|
||||
|
||||
size_t ZWRAP_freeCCtx(ZWRAP_CCtx* zwc)
|
||||
|
|
@ -404,7 +404,7 @@ typedef struct {
|
|||
int windowBits;
|
||||
ZSTD_customMem customMem;
|
||||
z_stream allocFunc; /* copy of zalloc, zfree, opaque */
|
||||
} ZWRAP_DCtx;
|
||||
} ZWRAP_DCtx __attribute__ ((aligned (4)));
|
||||
|
||||
|
||||
int ZWRAP_isUsingZSTDdecompression(z_streamp strm)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue