From 84d997fac63aeccdc59a8ac0e4de356603f866be Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Sat, 16 Aug 2014 22:46:53 +0200 Subject: [PATCH] Fix a build error. Commit 7a851ccb1b9ed9b8906721cb1872b96b35185883 accidentally broke the build due to a missing line. --- src/mares_iconhd_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mares_iconhd_parser.c b/src/mares_iconhd_parser.c index 6546453..af4744c 100644 --- a/src/mares_iconhd_parser.c +++ b/src/mares_iconhd_parser.c @@ -69,6 +69,7 @@ static const dc_parser_vtable_t mares_iconhd_parser_vtable = { static dc_status_t mares_iconhd_parser_cache (mares_iconhd_parser_t *parser) { + dc_parser_t *abstract = (dc_parser_t *) parser; const unsigned char *data = parser->base.data; unsigned int size = parser->base.size;