From b3574faa066667426886d8150f97132f5cfd1126 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 18 Feb 2008 15:30:56 +0000 Subject: Remove a superfluous call to atoi in ffmpeg.c:opt_verbose Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) [FFmpeg-devel] [PATCH] Cosmetics: remove a superfluos call to atoi in ffmpeg.c:opt_verbose Originally committed as revision 12136 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index 2f43b76c0f..e4b3dcfd59 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2181,7 +2181,7 @@ static void opt_me_threshold(const char *arg) static void opt_verbose(const char *arg) { verbose = atoi(arg); - av_log_set_level(atoi(arg)); + av_log_set_level(verbose); } static void opt_frame_rate(const char *arg) -- cgit v1.2.3