summaryrefslogtreecommitdiff
path: root/libavutil/lfg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-04 21:17:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-04 21:17:52 +0200
commit4480edcf312b8d4350201eca047ccdd2c27f8517 (patch)
treedbca26f831a32c9638f0aab77daaee0eda3caf86 /libavutil/lfg.c
parent6cecb8915aa8fa8b55f494f9dd05cce1a4c36093 (diff)
parent91dffb4c1dfc7232e74ab86536afe39a777fc12d (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: w32threads: Make pthread_cond_wait follow POSIX cosmetics: Consistently place static, inline and av_cold attributes/keywords. sbrdsp: Use standard multiple inclusion guards. pcm: K&R formatting cosmetics rawdec: Support fourccs YV16 and YV24 rtmp: implement bandwidth notification rtmp: update supported audio codecs value Conflicts: libavcodec/pcm.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/lfg.c')
-rw-r--r--libavutil/lfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lfg.c b/libavutil/lfg.c
index fb0b258ad4..ffa2f1fd3d 100644
--- a/libavutil/lfg.c
+++ b/libavutil/lfg.c
@@ -27,7 +27,7 @@
#include "intreadwrite.h"
#include "attributes.h"
-void av_cold av_lfg_init(AVLFG *c, unsigned int seed)
+av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
{
uint8_t tmp[16] = { 0 };
int i;