From e65e4ac6f2c8a4a5b5276f2ad23d20bf7feb44de Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 24 Oct 2007 21:33:22 +0000 Subject: Fix coding style. --- audio/gsta2dpsink.c | 8 ++++---- 1 file 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); -- cgit