From 66eb3e90c36b25123e93c92d689cda2f0b82eb0a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Nov 2008 17:10:13 +0100 Subject: wavpack: use enum tag_type Don't store tag type values in a plain integer, use the proper enum. --- src/decoder/wavpack_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/wavpack_plugin.c b/src/decoder/wavpack_plugin.c index e536787f5..b39611f35 100644 --- a/src/decoder/wavpack_plugin.c +++ b/src/decoder/wavpack_plugin.c @@ -31,7 +31,7 @@ static struct { const char *name; - int type; + enum tag_type type; } tagtypes[] = { { "artist", TAG_ITEM_ARTIST }, { "album", TAG_ITEM_ALBUM }, -- cgit v1.2.3