From 086bee8c143db0cdf8b18a84f311b8d7c7e2d75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimo=20J=C3=A4rvi?= Date: Thu, 29 Mar 2012 13:32:15 +0300 Subject: [PATCH] tcp: Fix compiling with mingw https://bugzilla.gnome.org/show_bug.cgi?id=673056 --- gst/tcp/gstmultisocketsink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/tcp/gstmultisocketsink.c b/gst/tcp/gstmultisocketsink.c index d9f5188b60..c905521be3 100644 --- a/gst/tcp/gstmultisocketsink.c +++ b/gst/tcp/gstmultisocketsink.c @@ -656,8 +656,8 @@ gst_multi_socket_sink_handle_client_write (GstMultiSocketSink * sink, /* partial write means that the client cannot read more and we should * stop sending more */ GST_LOG_OBJECT (sink, - "partial write on %p of %" G_GSSIZE_FORMAT " bytes", socket, - wrote); + "partial write on %p of %" G_GSSIZE_FORMAT " bytes", + mhclient->handle.socket, wrote); mhclient->bufoffset += wrote; more = FALSE; } else {