summaryrefslogtreecommitdiff
path: root/libavcodec/wmaprodec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-03-30 23:34:22 +0200
committerDiego Biurrun <diego@biurrun.de>2012-04-04 14:54:13 +0200
commit3dde147ff92764b907db49b5237df7fd26359444 (patch)
tree0dc29e3d99bbed3ef427cc4892b8cc70594df959 /libavcodec/wmaprodec.c
parentd4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff)
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r--libavcodec/wmaprodec.c2
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);