Commit b0d14aba authored by stefano's avatar stefano

Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16242 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ba3758d9
...@@ -3736,8 +3736,8 @@ static int ffserver_opt_default(const char *opt, const char *arg, ...@@ -3736,8 +3736,8 @@ static int ffserver_opt_default(const char *opt, const char *arg,
AVCodecContext *avctx, int type) AVCodecContext *avctx, int type)
{ {
int ret = 0; int ret = 0;
const AVOption *o2 = av_find_opt(avctx, opt, NULL, type, type); const AVOption *o = av_find_opt(avctx, opt, NULL, type, type);
if(o2) if(o)
ret = av_set_string3(avctx, opt, arg, 1, NULL); ret = av_set_string3(avctx, opt, arg, 1, NULL);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment