diff options
| author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-10-24 21:33:22 +0000 | 
|---|---|---|
| committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-10-24 21:33:22 +0000 | 
| commit | e65e4ac6f2c8a4a5b5276f2ad23d20bf7feb44de (patch) | |
| tree | 80c1198c2398fb0ed55ccffee80b3d4eed9f57ec | |
| parent | c522cb3f23849475348aa9c4ae6a70c83a1c2675 (diff) | |
Fix coding style.
| -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); | 
