mirror of https://git.ffmpeg.org/ffmpeg.git
Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().
Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f16dd7e65a
commit
5c548937e0
|
@ -3736,8 +3736,8 @@ static int ffserver_opt_default(const char *opt, const char *arg,
|
|||
AVCodecContext *avctx, int type)
|
||||
{
|
||||
int ret = 0;
|
||||
const AVOption *o2 = av_find_opt(avctx, opt, NULL, type, type);
|
||||
if(o2)
|
||||
const AVOption *o = av_find_opt(avctx, opt, NULL, type, type);
|
||||
if(o)
|
||||
ret = av_set_string3(avctx, opt, arg, 1, NULL);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue