ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Wed Mar 6 23:43:40 2024 +0100| [ac61231757b422aca0596eab418c46a9940223b2] | committer: Andreas Rheinhardt
avutil/avstring: Use proper types Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ac61231757b422aca0596eab418c46a9940223b2 --- libavutil/avstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/avstring.c b/libavutil/avstring.c index 8751ce5576..2071dd36a5 100644 --- a/libavutil/avstring.c +++ b/libavutil/avstring.c @@ -345,7 +345,7 @@ int av_escape(char **dst, const char *src, const char *special_chars, int av_match_name(const char *name, const char *names) { const char *p; - int len, namelen; + size_t len, namelen; if (!name || !names) return 0; _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
