aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-07 22:34:09 +0100
committerMax Kellermann <max@duempel.org>2014-01-07 23:11:00 +0100
commit70eb9335bdf56141e697e3d8451ae34db1d8a9f9 (patch)
tree651e7f9808ca7d04438a3525fd6e04795493ba1b /src/tag
parentda80f91e1c1a02abce17159ed303c7666d68bf14 (diff)
downloadmpd-70eb9335bdf56141e697e3d8451ae34db1d8a9f9.tar.gz
mpd-70eb9335bdf56141e697e3d8451ae34db1d8a9f9.tar.xz
mpd-70eb9335bdf56141e697e3d8451ae34db1d8a9f9.zip
tag/TagPool: use gcc_packed instead of mpd_packed
By accident, this declared a global variable instead of adding the "packed" attribute.
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/TagPool.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag/TagPool.cxx b/src/tag/TagPool.cxx
index 8e1e670c9..5f7a041cd 100644
--- a/src/tag/TagPool.cxx
+++ b/src/tag/TagPool.cxx
@@ -35,7 +35,7 @@ struct slot {
struct slot *next;
unsigned char ref;
TagItem item;
-} mpd_packed;
+} gcc_packed;
static struct slot *slots[NUM_SLOTS];