From eb7a6d0813ffa2720dafa5cf55eba4d51ba52636 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Sun, 21 Sep 2014 19:03:33 +0200 Subject: lavu/bprint: add const to av_bprint_is_complete() argument. --- libavutil/bprint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/bprint.h') 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; } -- cgit v1.2.3