tag/TagPool: use gcc_packed instead of mpd_packed

By accident, this declared a global variable instead of adding the
"packed" attribute.
This commit is contained in:
Max Kellermann 2014-01-07 22:34:09 +01:00
parent da80f91e1c
commit 70eb9335bd
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ struct slot {
struct slot *next;
unsigned char ref;
TagItem item;
} mpd_packed;
} gcc_packed;
static struct slot *slots[NUM_SLOTS];