From 29cfb9a6d715e310bbdf657ae267a6d86ec26dc0 Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Wed, 16 Dec 2015 11:12:00 +0000 Subject: [PATCH] multifdsink: fix typo in GST_WARNING_OBJECT This should make easier to parse the debug logs. s/fnctl/fcntl --- gst/tcp/gstmultifdsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/tcp/gstmultifdsink.c b/gst/tcp/gstmultifdsink.c index c7b591f06b..2b1b44dd71 100644 --- a/gst/tcp/gstmultifdsink.c +++ b/gst/tcp/gstmultifdsink.c @@ -952,7 +952,7 @@ gst_multi_fd_sink_handle_clients (GstMultiFdSink * sink) res = fcntl (fd, F_GETFL, &flags); if (res == -1) { - GST_WARNING_OBJECT (sink, "fnctl failed for %d, removing: %s (%d)", + GST_WARNING_OBJECT (sink, "fcntl failed for %d, removing: %s (%d)", fd, g_strerror (errno), errno); if (errno == EBADF) { mhclient->status = GST_CLIENT_STATUS_ERROR;