diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-11 22:15:06 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-02-12 12:08:02 +0100 |
commit | 25a1ba814ad80056247fd357ec4c6911324a3f66 (patch) | |
tree | bfc7ac8a4c573abef5f25bfd3dca36b93aef49a1 /libavutil/log.h | |
parent | 52771346dc7872e39c98508584d430567d3e8f31 (diff) | |
download | ffmpeg-25a1ba814ad80056247fd357ec4c6911324a3f66.tar.gz |
log: Have function parameter names match between .c and .h file
This fixes two related Doxygen warnings.
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 05d28264fc..6d26b67db8 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -219,9 +219,10 @@ void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)); * lavu_log_constants "Logging Constant". * @param fmt The format string (printf-compatible) that specifies how * subsequent arguments are converted to output. - * @param ap The arguments referenced by the format string. + * @param vl The arguments referenced by the format string. */ -void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl); +void av_log_default_callback(void *avcl, int level, const char *fmt, + va_list vl); /** * Return the context name |