1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Error string argument is no longer used

This commit is contained in:
Moritz Grimm 2015-05-22 22:34:48 +02:00
parent d93f313f97
commit b920aadd70

View File

@ -129,8 +129,10 @@ cfg_encoder_set_format_str(struct cfg_encoder *e, const char *fmt_str,
int
cfg_encoder_set_program(struct cfg_encoder *e, const char *program,
const char **errstrp)
const char **not_used)
{
(void)not_used;
xfree(e->program);
if (!program || !program[0])