summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tagcache.c2
-rw-r--r--apps/tagcache.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 6dfc88bba4..42ef2d3ef0 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -130,7 +130,7 @@ static long tempbuf_pos;
130static const char *tags_str[] = { "artist", "album", "genre", "title", 130static const char *tags_str[] = { "artist", "album", "genre", "title",
131 "filename", "composer", "comment", "albumartist", "grouping", "year", 131 "filename", "composer", "comment", "albumartist", "grouping", "year",
132 "discnumber", "tracknumber", "bitrate", "length", "playcount", "rating", 132 "discnumber", "tracknumber", "bitrate", "length", "playcount", "rating",
133 "playtime", "lastplayed", "commitid", "mtime" }; 133 "playtime", "lastplayed", "commitid", "mtime", "lastoffset" };
134 134
135/* Status information of the tagcache. */ 135/* Status information of the tagcache. */
136static struct tagcache_stat tc_stat; 136static struct tagcache_stat tc_stat;
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 8c09063fb9..59f8b8bc9a 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -26,7 +26,7 @@
26#include "metadata.h" 26#include "metadata.h"
27 27
28/** 28/**
29 Note: When adding new tags, make sure to update index_entry_ec in 29 Note: When adding new tags, make sure to update index_entry_ec and tags_str in
30 tagcache.c and bump up the header version too. 30 tagcache.c and bump up the header version too.
31 */ 31 */
32enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title, 32enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,