diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-09-15 02:43:43 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-17 09:51:47 +0200 |
commit | 3fbf8d6e1d4c5a4bcaa4d5ec64099e9b646c5603 (patch) | |
tree | e5a0331b7e76605a30ef51ea37d6c3a17cf2e3dd /libavutil/mem.h | |
parent | 1f0529ec5f545b24daefa0e2346d93a6a4d77f5f (diff) | |
download | ffmpeg-3fbf8d6e1d4c5a4bcaa4d5ec64099e9b646c5603.tar.gz |
avutil: Fix mismatching argument names
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r-- | libavutil/mem.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index d91174196c..c9c4fcf1ff 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -667,7 +667,8 @@ void *av_dynarray2_add(void **tab_ptr, int *nb_ptr, size_t elem_size, /** * Multiply two `size_t` values checking for overflow. * - * @param[in] a,b Operands of multiplication + * @param[in] a Operand of multiplication + * @param[in] b Operand of multiplication * @param[out] r Pointer to the result of the operation * @return 0 on success, AVERROR(EINVAL) on overflow */ |