aboutsummaryrefslogtreecommitdiff
path: root/src/song.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-07 22:15:06 +0200
committerMax Kellermann <max@duempel.org>2008-10-07 22:15:06 +0200
commit46eda29d1cd5948ca1342dd4c45d3e8c4d51e205 (patch)
tree8c25db037af436f7e01e7aff433a2f46d534f656 /src/song.h
parent81ce0680850f05c2e533ea398d8ed2f01e01a910 (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song.h b/src/song.h
index fddd5ccf..cb8ba188 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);