Commit a9f003b8 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/avstring: Use size_t in av_strlcatf()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
(cherry picked from commit ae4eea8b)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4d3450d6
......@@ -100,7 +100,7 @@ size_t av_strlcat(char *dst, const char *src, size_t size)
size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...)
{
int len = strlen(dst);
size_t len = strlen(dst);
va_list vl;
va_start(vl, fmt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment