Browse Source

indent

Originally committed as revision 22451 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård 15 years ago
parent
commit
5de91783bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavutil/random_seed.c

+ 1 - 1
libavutil/random_seed.c

@@ -34,7 +34,7 @@ uint32_t ff_random_get_seed(void)
         int err = read(fd, &seed, 4);
         close(fd);
         if (err == 4)
-        return seed;
+            return seed;
     }
 #ifdef AV_READ_TIME
     seed = AV_READ_TIME();