diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-10-06 18:43:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-06 18:43:10 +0200 |
commit | 43761441c9bbb763ccde3ae2f7f5508f5cec70ec (patch) | |
tree | 3d1bb799bf8bc6f78cbf96625f1a6d0a7204227d /src/song.h | |
parent | dc245f389cffb1cb50d7dc066827be702b424a01 (diff) | |
download | mpd-43761441c9bbb763ccde3ae2f7f5508f5cec70ec.tar.gz mpd-43761441c9bbb763ccde3ae2f7f5508f5cec70ec.tar.xz mpd-43761441c9bbb763ccde3ae2f7f5508f5cec70ec.zip |
song: get rid of newNullSong()
It didn't save us any lines of code nor did it do anything
useful since we would overwrite everything anyways.
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/song.h b/src/song.h index 0b55a0f3f..f7466e24c 100644 --- a/src/song.h +++ b/src/song.h @@ -42,8 +42,6 @@ typedef struct _Song { time_t mtime; } Song; -Song *newNullSong(void); - Song *newSong(const char *url, enum song_type type, struct _Directory *parentDir); |