mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
multifdsink: fix typo in GST_WARNING_OBJECT
This should make easier to parse the debug logs. s/fnctl/fcntl
This commit is contained in:
parent
033ce9b20d
commit
29cfb9a6d7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue