diff options
author | Nicolas George <george@nsup.org> | 2014-09-21 19:03:33 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2014-09-21 19:42:21 +0200 |
commit | eb7a6d0813ffa2720dafa5cf55eba4d51ba52636 (patch) | |
tree | 417120029618117a0b4a1978031e16ea84303c11 /libavutil/bprint.h | |
parent | 08e2b0da2ca9b03630c38a878ce66d32301a9825 (diff) | |
download | ffmpeg-eb7a6d0813ffa2720dafa5cf55eba4d51ba52636.tar.gz |
lavu/bprint: add const to av_bprint_is_complete() argument.
Diffstat (limited to 'libavutil/bprint.h')
-rw-r--r-- | libavutil/bprint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/bprint.h b/libavutil/bprint.h index 839ec1ec0d..d1682fca92 100644 --- a/libavutil/bprint.h +++ b/libavutil/bprint.h @@ -179,7 +179,7 @@ void av_bprint_clear(AVBPrint *buf); * It may have been truncated due to a memory allocation failure * or the size_max limit (compare size and size_max if necessary). */ -static inline int av_bprint_is_complete(AVBPrint *buf) +static inline int av_bprint_is_complete(const AVBPrint *buf) { return buf->len < buf->size; } |