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:
Tim-Philipp Müller 2014-04-07 15:38:17 +01:00
parent 1a08e22845
commit 9c821554fc

View file

@ -540,9 +540,9 @@ was_socket:
}
lseek_wonky:
{
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
(_("File \"%s\" could not seek back to zero after seek test."),
src->filename), (NULL));
GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL),
("Could not seek back to zero after seek test in file \"%s\"",
src->filename));
goto error_close;
}
error_close: