Skip to content

Commit

Permalink
log.h: make AVClass a named struct
Browse files Browse the repository at this point in the history
'struct AVClass' is used in the code since
641c7af, but AVClass is typedeffed as
an anonymous struct.

Signed-off-by: Anton Khirnov <[email protected]>
  • Loading branch information
jmakovicka authored and elenril committed Oct 12, 2011
1 parent 3e68b28 commit 67bbf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavutil/log.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 67bbf07

Please sign in to comment.