song: really make the song struct non-packed

Somehow I must have missed this in commit 22e40b61.
This commit is contained in:
Max Kellermann 2008-10-07 22:15:06 +02:00
parent 81ce068085
commit 46eda29d1c

View File

@ -35,7 +35,7 @@ typedef struct _Song {
struct _Directory *parentDir; struct _Directory *parentDir;
time_t mtime; time_t mtime;
char url[sizeof(size_t)]; char url[sizeof(size_t)];
} mpd_packed Song; } Song;
Song * Song *
song_alloc(const char *url, struct _Directory *parent); song_alloc(const char *url, struct _Directory *parent);