Skip to content

Commit dbd27e5

Browse files
author
usharma
committed
aws: fix zstd compression pointer
Added type casting explicitly to match the compress_options struct Signed-off-by: usharma <ujjwal_sharma@intuit.com>
1 parent 9e614d4 commit dbd27e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws/flb_aws_compress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static const struct compression_option compression_options[] = {
5252
{
5353
FLB_AWS_COMPRESS_ZSTD,
5454
"zstd",
55-
&flb_zstd_compress
55+
(int *)&flb_zstd_compress
5656
},
5757
#ifdef FLB_HAVE_ARROW
5858
{

0 commit comments

Comments
 (0)