Browse Source

avutil/avstring: Use size_t in av_strlcatf()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
ae4eea8be4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/avstring.c

+ 1
- 1
libavutil/avstring.c View File

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


Loading…
Cancel
Save