mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
lz4/fpga_compress: remove warning missing-braces
fpga_compress.c:154:49: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces] LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; ^ {}
This commit is contained in:
parent
b2c7ded7fc
commit
df9f34ba2b
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ typedef struct lz4_stream_s {
|
|||
|
||||
static int zlib_decompress(FILE *infile, FILE *outfile) {
|
||||
|
||||
LZ4_streamDecode_t lz4StreamDecode_body = { 0 };
|
||||
LZ4_streamDecode_t lz4StreamDecode_body = {{ 0 }};
|
||||
char outbuf[FPGA_RING_BUFFER_BYTES];
|
||||
|
||||
fseek(infile, 0L, SEEK_END);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue