mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 04:22:27 +00:00
filesrc: no need for a translated message for impossible error cases
The message is too technical anyway, the default message works just fine here as well.
This commit is contained in:
parent
1a08e22845
commit
9c821554fc
1 changed files with 3 additions and 3 deletions
|
@ -540,9 +540,9 @@ was_socket:
|
||||||
}
|
}
|
||||||
lseek_wonky:
|
lseek_wonky:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
|
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
|
||||||
(_("File \"%s\" could not seek back to zero after seek test."),
|
("Could not seek back to zero after seek test in file \"%s\"",
|
||||||
src->filename), (NULL));
|
src->filename));
|
||||||
goto error_close;
|
goto error_close;
|
||||||
}
|
}
|
||||||
error_close:
|
error_close:
|
||||||
|
|
Loading…
Reference in a new issue