mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
Fix for -Wold-style-definition
I didn't add the flag to configure because libvisual ships headers that trigger this warning.
This commit is contained in:
parent
1471df894a
commit
253d9acbcd
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
* and returning a pseudo random number between 0 and 2^32 - 1.
|
||||
*/
|
||||
static inline guint32
|
||||
gst_fast_random_uint32 ()
|
||||
gst_fast_random_uint32 (void)
|
||||
{
|
||||
static guint32 state = 0xdeadbeef;
|
||||
|
||||
|
|
Loading…
Reference in a new issue