diff options
author | Raimo Järvi <raimo.jarvi@gmail.com> | 2012-06-08 23:01:26 +0300 |
---|---|---|
committer | Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> | 2012-06-14 16:38:22 +0100 |
commit | e0241278f64669498376c50a14e6b5a803006e51 (patch) | |
tree | 442f4a5dfcd93b31d019ad481093a25dce568ff7 /gst/librfb | |
parent | afba4ce869e4fe62c7fe075daa40d1994f258a84 (diff) | |
download | gstreamer-plugins-bad-e0241278f64669498376c50a14e6b5a803006e51.tar.gz |
rfbsrc: Fix compiling in Windows
https://bugzilla.gnome.org/show_bug.cgi?id=677724
Diffstat (limited to 'gst/librfb')
-rw-r--r-- | gst/librfb/gstrfbsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/librfb/gstrfbsrc.c b/gst/librfb/gstrfbsrc.c index 235acd5a8..3129c1304 100644 --- a/gst/librfb/gstrfbsrc.c +++ b/gst/librfb/gstrfbsrc.c @@ -197,7 +197,7 @@ gst_rfb_src_init (GstRfbSrc * src, GstRfbSrcClass * klass) WSADATA wsa_data; if (WSAStartup (MAKEWORD (2, 2), &wsa_data) != 0) { - GST_ERROR_OBJECT (sink, "WSAStartup failed: 0x%08x", WSAGetLastError ()); + GST_ERROR_OBJECT (src, "WSAStartup failed: 0x%08x", WSAGetLastError ()); } } #endif |