diff options
| -rw-r--r-- | audio/gsta2dpsink.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/audio/gsta2dpsink.c b/audio/gsta2dpsink.c index c5761148..6456c8f6 100644 --- a/audio/gsta2dpsink.c +++ b/audio/gsta2dpsink.c @@ -357,7 +357,7 @@ static gboolean gst_a2dp_sink_conf_resp(GstA2dpSink *sink)  {  	gchar buf[IPC_MTU];  	GIOError io_error; -	guint ret; +	gsize ret;  	struct ipc_packet *pkt = (void *) buf;  	struct ipc_data_cfg *cfg = (void *) pkt->data; @@ -396,7 +396,7 @@ static gboolean gst_a2dp_sink_conf_recv_dev_conf(GstA2dpSink *sink)  {  	gchar buf[IPC_MTU];  	GIOError io_error; -	guint ret=0; +	gsize ret;  	struct ipc_packet *pkt = (void *) buf;  	struct ipc_data_cfg *cfg = (void *) pkt->data;  	struct ipc_codec_sbc *sbc = (void *) cfg->data; @@ -446,7 +446,7 @@ static gboolean gst_a2dp_sink_conf_recv_stream_fd(GstA2dpSink *self)  	GError *gerr = NULL;  	GIOStatus status;  	GIOFlags flags; -	gsize read ; +	gsize read;  	ret = gst_a2dp_sink_bluetooth_recvmsg_fd(self);  	if (ret < 0) @@ -609,7 +609,7 @@ static gboolean gst_a2dp_sink_send_conf_pkt(GstA2dpSink *sink, GstCaps *caps)  	gchar buf[IPC_MTU];  	struct ipc_packet *pkt = (void *) buf;  	gboolean ret; -	guint bytes_sent; +	gsize bytes_sent;  	GIOError io_error;  	g_assert(sink->con_state == NOT_CONFIGURED); | 
