From 5c548937e0f54bf72fefbf3696f71f8b6bb6ffd0 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 19 Dec 2008 22:33:15 +0000 Subject: [PATCH] Cosmetics, change variable name "o2" to "o" in ffserver_opt_default(). Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffserver.c b/ffserver.c index d7bd09227b..c48cb41592 100644 --- a/ffserver.c +++ b/ffserver.c @@ -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; }