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:
parent
da80f91e1c
commit
70eb9335bd
|
@ -35,7 +35,7 @@ struct slot {
|
|||
struct slot *next;
|
||||
unsigned char ref;
|
||||
TagItem item;
|
||||
} mpd_packed;
|
||||
} gcc_packed;
|
||||
|
||||
static struct slot *slots[NUM_SLOTS];
|
||||
|
||||
|
|
Loading…
Reference in New Issue