From daf8cf358a098a903d59adb6c0d0cc3262a8c93e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 22 Sep 2014 09:19:33 +0200 Subject: avformat: Don't anonymously typedef structs --- libavformat/anm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/anm.c') diff --git a/libavformat/anm.c b/libavformat/anm.c index f78149285b..6b8e3066f3 100644 --- a/libavformat/anm.c +++ b/libavformat/anm.c @@ -28,13 +28,13 @@ #include "avformat.h" #include "internal.h" -typedef struct { +typedef struct Page { int base_record; unsigned int nb_records; int size; } Page; -typedef struct { +typedef struct AnmDemuxContext { unsigned int nb_pages; /**< total pages in file */ unsigned int nb_records; /**< total records in file */ int page_table_offset; -- cgit v1.2.3