diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-30 23:34:22 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-04 14:54:13 +0200 |
commit | 3dde147ff92764b907db49b5237df7fd26359444 (patch) | |
tree | 0dc29e3d99bbed3ef427cc4892b8cc70594df959 /libavcodec/wmaprodec.c | |
parent | d4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff) | |
download | ffmpeg-3dde147ff92764b907db49b5237df7fd26359444.tar.gz |
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index ce87aeffc2..6bc9fad983 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -237,7 +237,7 @@ typedef struct WMAProDecodeCtx { *@brief helper function to print the most important members of the context *@param s context */ -static void av_cold dump_context(WMAProDecodeCtx *s) +static av_cold void dump_context(WMAProDecodeCtx *s) { #define PRINT(a, b) av_log(s->avctx, AV_LOG_DEBUG, " %s = %d\n", a, b); #define PRINT_HEX(a, b) av_log(s->avctx, AV_LOG_DEBUG, " %s = %x\n", a, b); |