From 67bbf07fb54b0289768b9d8195877a421c4fa500 Mon Sep 17 00:00:00 2001 From: Jindrich Makovicka Date: Wed, 12 Oct 2011 22:30:56 +0200 Subject: log.h: make AVClass a named struct 'struct AVClass' is used in the code since 641c7afe3c17334b81e3e2eef88f1751eb68f89f, but AVClass is typedeffed as an anonymous struct. Signed-off-by: Anton Khirnov --- libavutil/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/log.h b/libavutil/log.h index 18d0ddf0a8..0678e1a3b0 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -30,7 +30,7 @@ * arbitrary struct of which the first field is a pointer to an * AVClass struct (e.g. AVCodecContext, AVFormatContext etc.). */ -typedef struct { +typedef struct AVClass { /** * The name of the class; usually it is the same name as the * context structure type to which the AVClass is associated. -- cgit v1.2.3