Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-03-31 01:34:22 +0400
committerDiego Biurrun <diego@biurrun.de>2012-04-04 16:54:13 +0400
commit3dde147ff92764b907db49b5237df7fd26359444 (patch)
tree0dc29e3d99bbed3ef427cc4892b8cc70594df959 /libavutil/lfg.c
parentd4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff)
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
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 227af68993..c1f2861785 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;