minor : fixed warning under clang
This commit is contained in:
parent
dc43a1f6b5
commit
33dca250ee
7
lz4hc.c
7
lz4hc.c
@ -140,8 +140,8 @@ Compiler Options
|
|||||||
/**************************************
|
/**************************************
|
||||||
Includes
|
Includes
|
||||||
**************************************/
|
**************************************/
|
||||||
#include "lz4hc.h"
|
|
||||||
#include "lz4.h"
|
#include "lz4.h"
|
||||||
|
#include "lz4hc.h"
|
||||||
|
|
||||||
|
|
||||||
/**************************************
|
/**************************************
|
||||||
@ -248,9 +248,12 @@ Architecture-specific macros
|
|||||||
**************************************/
|
**************************************/
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
union {
|
||||||
|
U64 alignedOn8Bytes; /* force 8-bytes alignment on 32-bits systems */
|
||||||
U32 hashTable[HASHTABLESIZE];
|
U32 hashTable[HASHTABLESIZE];
|
||||||
|
};
|
||||||
U16 chainTable[MAXD];
|
U16 chainTable[MAXD];
|
||||||
const BYTE* end; /* next block here to keep current prefix as prefix */
|
const BYTE* end; /* next block here to continue on current prefix */
|
||||||
const BYTE* base; /* All index relative to this position */
|
const BYTE* base; /* All index relative to this position */
|
||||||
const BYTE* dictBase; /* alternate base for extDict */
|
const BYTE* dictBase; /* alternate base for extDict */
|
||||||
U32 dictLimit; /* below that point, need extDict */
|
U32 dictLimit; /* below that point, need extDict */
|
||||||
|
Loading…
Reference in New Issue
Block a user