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/tiffenc.c | |
parent | d4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff) | |
download | ffmpeg-3dde147ff92764b907db49b5237df7fd26359444.tar.gz |
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/tiffenc.c')
-rw-r--r-- | libavcodec/tiffenc.c | 2 |
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; |