diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-01 16:02:10 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-01 16:02:10 +0000 |
commit | 6705dd5f9889d7877b3503fb09b46fb9d875de17 (patch) | |
tree | 58f8500d0595674a36cb98b46759fce39fb16498 /libavcore/parseutils.c | |
parent | 0795b861742eb244737cb15a544bb6d81f98c260 (diff) | |
download | ffmpeg-6705dd5f9889d7877b3503fb09b46fb9d875de17.tar.gz |
Fix weird indent.
Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore/parseutils.c')
-rw-r--r-- | libavcore/parseutils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcore/parseutils.c b/libavcore/parseutils.c index e8ce6cfec7..b59b8190f1 100644 --- a/libavcore/parseutils.c +++ b/libavcore/parseutils.c @@ -121,10 +121,10 @@ int av_parse_video_rate(AVRational *rate, const char *arg) /* First, we check our abbreviation table */ for (i = 0; i < n; ++i) - if (!strcmp(video_rate_abbrs[i].abbr, arg)) { - *rate = video_rate_abbrs[i].rate; - return 0; - } + if (!strcmp(video_rate_abbrs[i].abbr, arg)) { + *rate = video_rate_abbrs[i].rate; + return 0; + } /* Then, we try to parse it as fraction */ cp = strchr(arg, '/'); |