diff --git a/libavcore/parseutils.c b/libavcore/parseutils.c
index e8ce6cfec7efc6af4eefc2b7c83ef07152b274d6..b59b8190f112305bee5c869e9f4efe87aab6e18d 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, '/');