avutil/avstring: Use proper types

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-03-06 23:43:40 +01:00
parent 9e36e2fb7b
commit ac61231757
1 changed files with 1 additions and 1 deletions

View File

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