diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-03-10 10:08:10 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-03-10 10:08:10 +0000 |
commit | 31d44ea77584e9118c367b8ab0569dc5d41f826a (patch) | |
tree | 2f2d57caa8de0bf557bd6416527eba5987fd8f06 /src/tables.c | |
parent | ff0bcaeb0a7613fd809cfa8c2111f6d09fa3e7b6 (diff) | |
download | mpd-31d44ea77584e9118c367b8ab0569dc5d41f826a.tar.gz mpd-31d44ea77584e9118c367b8ab0569dc5d41f826a.tar.xz mpd-31d44ea77584e9118c367b8ab0569dc5d41f826a.zip |
remove some no longer used functions
git-svn-id: https://svn.musicpd.org/mpd/trunk@242 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tables.c')
-rw-r--r-- | src/tables.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/tables.c b/src/tables.c index ef922e1c2..748cd53a4 100644 --- a/src/tables.c +++ b/src/tables.c @@ -129,17 +129,6 @@ void removeASongFromTables(Song * song) { removeSongFromArtistTable(song); } -void removeSongsFromTables(SongList * songList) { - ListNode * node = songList->firstNode; - Song * song; - - while(node) { - song = (Song *)node->data; - removeASongFromTables(song); - node = node->nextNode; - } -} - unsigned long numberOfSongs() { return 0; } |