a2dp: fix sign of out_decoded

This commit is contained in:
Wim Taymans 2020-11-02 09:16:59 +01:00
parent c1530ba171
commit 395a30b5d6
2 changed files with 2 additions and 2 deletions

View file

@ -357,7 +357,7 @@ static int send_buffer(struct impl *this)
static int encode_buffer(struct impl *this, const void *data, int size)
{
int processed;
ssize_t out_encoded;
size_t out_encoded;
struct port *port = &this->port;
const void *from_data = data;
int from_size = size;