From 9bceffef3a527ac3bd5023ee7799a5878cc914c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 14 Mar 2009 23:00:57 +0000 Subject: [PATCH] Fix ff_random_get_seed() prototype Originally committed as revision 17970 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/random_seed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/random_seed.h b/libavutil/random_seed.h index bda7817ed0..72458202ce 100644 --- a/libavutil/random_seed.h +++ b/libavutil/random_seed.h @@ -26,6 +26,6 @@ /** * Gets a seed to use in conjuction with random functions. */ -uint32_t ff_random_get_seed(); +uint32_t ff_random_get_seed(void); #endif /* AVUTIL_RANDOM_SEED_H */