diff options
author | Måns Rullgård <mans@mansr.com> | 2009-03-14 23:00:57 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-03-14 23:00:57 +0000 |
commit | 9bceffef3a527ac3bd5023ee7799a5878cc914c6 (patch) | |
tree | 79f347b50bc1c0cab087b20c47c1c200841f5c94 /libavutil | |
parent | 36a12218dbaa51acb246377433f4bfbb6a0c1cce (diff) | |
download | ffmpeg-9bceffef3a527ac3bd5023ee7799a5878cc914c6.tar.gz |
Fix ff_random_get_seed() prototype
Originally committed as revision 17970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/random_seed.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |