aboutsummaryrefslogtreecommitdiff
path: root/src/tag.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:29 +0200
committerMax Kellermann <max@duempel.org>2008-08-29 09:38:29 +0200
commitad0e09b2db5ebf428acc98f90c3ef0dd171bebbb (patch)
tree8d3421da76a85ec1918a4fc479d2d60b5a3904d1 /src/tag.h
parent6f72fe3ecffd8ee8218fc5a19ec45b0447323c12 (diff)
tag: converted MpdTag.items to a pointer list
This prepares the following patches, which aim to reduce MPD's memory usage: we plan to share tag_item instances, instead of just their values.
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.h b/src/tag.h
index 51cd64cd..1618c0f5 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -46,7 +46,7 @@ struct tag_item {
struct tag {
int time;
- struct tag_item *items;
+ struct tag_item **items;
mpd_uint8 numOfItems;
};