summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-12-19 22:33:15 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-12-19 22:33:15 +0000
commit5c548937e0f54bf72fefbf3696f71f8b6bb6ffd0 (patch)
treeac35005364a0b59fd57b0fa37fc2ee3e3f20d456 /ffserver.c
parentf16dd7e65a936def99ff00f946544f75ee2f4f73 (diff)
Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().
Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c4
1 files 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;
}