From 6c0a902d124f442fb06cd74415a39d5a1959017f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20T=C3=A4uber?= Date: Tue, 27 Sep 2011 14:41:09 +0200 Subject: [PATCH] ffmpeg: fix typo in warning Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 16da621f04..a5aaa72a31 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -4150,7 +4150,7 @@ static int opt_old2new(OptionsContext *o, const char *opt, const char *arg) static int opt_bitrate(OptionsContext *o, const char *opt, const char *arg) { if(!strcmp(opt, "b")){ - av_log(0,AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambigous\n"); + av_log(0,AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambiguous\n"); return parse_option(o, av_strdup("b:v"), arg, options); } return opt_default(opt, arg);