diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-06 23:43:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-10 13:51:37 +0100 |
commit | ac61231757b422aca0596eab418c46a9940223b2 (patch) | |
tree | a03243034880b48fda768afb46142520b8e6fbb2 | |
parent | 9e36e2fb7b0153e3e216870e8d88018f0546f8e6 (diff) | |
download | ffmpeg-ac61231757b422aca0596eab418c46a9940223b2.tar.gz |
avutil/avstring: Use proper types
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavutil/avstring.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |