multifdsink: fix typo in GST_WARNING_OBJECT

This should make easier to parse the debug logs.
s/fnctl/fcntl
This commit is contained in:
Luis de Bethencourt 2015-12-16 11:12:00 +00:00
parent 033ce9b20d
commit 29cfb9a6d7

View file

@ -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;