diff options
author | Max Kellermann <max@duempel.org> | 2008-10-07 22:15:06 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-10-11 19:21:46 -0700 |
commit | b0dd57ac8f35755b5d367365d1a80d3a5b9527e8 (patch) | |
tree | 32edf04b6daf6e2f7c3b5381a44fd0a61883014d /src | |
parent | b843ae1dde619605a318002b2c2326a9cce380f0 (diff) | |
download | mpd-b0dd57ac8f35755b5d367365d1a80d3a5b9527e8.tar.gz mpd-b0dd57ac8f35755b5d367365d1a80d3a5b9527e8.tar.xz mpd-b0dd57ac8f35755b5d367365d1a80d3a5b9527e8.zip |
song: really make the song struct non-packed
Somehow I must have missed this in commit 22e40b61.
Diffstat (limited to '')
-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 58506280b..46cf8f5cb 100644 --- a/src/song.h +++ b/src/song.h @@ -38,7 +38,7 @@ typedef struct _Song { struct _Directory *parentDir; time_t mtime; char url[sizeof(size_t)]; -} mpd_packed Song; +} Song; Song *newSong(const char *url, struct _Directory *parentDir); |