[FFmpeg-cvslog] avutil/avstring: Use proper types

Andreas Rheinhardt git at videolan.org
Sun Mar 10 14:59:03 EET 2024


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Wed Mar  6 23:43:40 2024 +0100| [ac61231757b422aca0596eab418c46a9940223b2] | committer: Andreas Rheinhardt

avutil/avstring: Use proper types

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> 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;



More information about the ffmpeg-cvslog mailing list