diff options
author | Max Kellermann <max@duempel.org> | 2008-10-07 22:15:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-07 22:15:06 +0200 |
commit | 46eda29d1cd5948ca1342dd4c45d3e8c4d51e205 (patch) | |
tree | 8c25db037af436f7e01e7aff433a2f46d534f656 /src/song.h | |
parent | 81ce0680850f05c2e533ea398d8ed2f01e01a910 (diff) | |
download | mpd-46eda29d1cd5948ca1342dd4c45d3e8c4d51e205.tar.gz mpd-46eda29d1cd5948ca1342dd4c45d3e8c4d51e205.tar.xz mpd-46eda29d1cd5948ca1342dd4c45d3e8c4d51e205.zip |
song: really make the song struct non-packed
Somehow I must have missed this in commit 22e40b61.
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song.h b/src/song.h index fddd5ccfd..cb8ba188f 100644 --- a/src/song.h +++ b/src/song.h @@ -35,7 +35,7 @@ typedef struct _Song { struct _Directory *parentDir; time_t mtime; char url[sizeof(size_t)]; -} mpd_packed Song; +} Song; Song * song_alloc(const char *url, struct _Directory *parent); |