1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[zstd] cast

This commit is contained in:
Witold Filipczyk 2022-01-29 11:15:01 +01:00
parent 1c618b1cd4
commit d6be6dd505

View File

@ -95,7 +95,7 @@ zstd_decode_buffer(struct stream_encoded *st, char *data, int len, int *new_len)
} while (enc_data->input.pos < enc_data->input.size);
*new_len = enc_data->output.pos;
return enc_data->output.dst;
return (char *)enc_data->output.dst;
}
static int