summaryrefslogtreecommitdiff
path: root/libavcodec/tiffenc.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/tiffenc.c
parentd4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff)
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/tiffenc.c')
-rw-r--r--libavcodec/tiffenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c
index 50fee906e9..776a1489cf 100644
--- a/libavcodec/tiffenc.c
+++ b/libavcodec/tiffenc.c
@@ -74,7 +74,7 @@ typedef struct TiffEncoderContext {
* @param need Needed bytes
* @return 0 - ok, 1 - no free space
*/
-inline static int check_size(TiffEncoderContext * s, uint64_t need)
+static inline int check_size(TiffEncoderContext * s, uint64_t need)
{
if (s->buf_size < *s->buf - s->buf_start + need) {
*s->buf = s->buf_start + s->buf_size + 1;