mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
updsrc: fix typo causing compilation error
gstudpsrc.c: In function 'gst_udpsrc_create': gstudpsrc.c:365: error: 'ret' may be used uninitialized in this function https://bugzilla.gnome.org/show_bug.cgi?id=686642
This commit is contained in:
parent
a2eead3d60
commit
9fc62a58e3
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ receive_error:
|
|||
return GST_FLOW_FLUSHING;
|
||||
} else {
|
||||
GST_ELEMENT_ERROR (udpsrc, RESOURCE, READ, (NULL),
|
||||
("receive error %" G_GSSIZE_FORMAT ": %s", ret, err->message));
|
||||
("receive error %" G_GSSIZE_FORMAT ": %s", res, err->message));
|
||||
g_clear_error (&err);
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue