From e4cbf7529ba4bcfff47c44b0d026ecb356004c8c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 27 Sep 2012 10:19:53 +0200 Subject: Give all anonymously typedeffed structs in headers a name Anonymous structs cannot be forward declared and have no benefit. --- libavutil/dict.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/dict.h') diff --git a/libavutil/dict.h b/libavutil/dict.h index 72d1e9d25b..492da9a41c 100644 --- a/libavutil/dict.h +++ b/libavutil/dict.h @@ -68,7 +68,7 @@ #define AV_DICT_APPEND 32 /**< If the entry already exists, append to it. Note that no delimiter is added, the strings are simply concatenated. */ -typedef struct { +typedef struct AVDictionaryEntry { char *key; char *value; } AVDictionaryEntry; -- cgit v1.2.3