summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2021-06-16 05:31:01 (GMT)
committerGitHub <noreply@github.com>2021-06-16 05:31:01 (GMT)
commit4f0c7e45c54b7b7e42c16defb764a01129d4a0a8 (patch)
tree1a1e6e6ee5413fa8cbd271f8570f668698028eb2
parente51a6be463d359e4acfd3212cb49c82b89d633c4 (diff)
parentb3d46ae07fc04609cd7335ab5d06b01f269e7719 (diff)
downloadlz4-4f0c7e45c54b7b7e42c16defb764a01129d4a0a8.zip
lz4-4f0c7e45c54b7b7e42c16defb764a01129d4a0a8.tar.gz
lz4-4f0c7e45c54b7b7e42c16defb764a01129d4a0a8.tar.bz2
Merge pull request #1001 from GabeNI/dev
Cast ALLOC return value to satisfy C++
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 62a6f6c..405e977 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -1359,7 +1359,7 @@ int LZ4_compress_fast(const char* source, char* dest, int inputSize, int maxOutp
{
int result;
#if (LZ4_HEAPMODE)
- LZ4_stream_t* ctxPtr = ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */
+ LZ4_stream_t* ctxPtr = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */
if (ctxPtr == NULL) return 0;
#else
LZ4_stream_t ctx;