diff options
-rw-r--r-- | src/update_remove.c | 3 | ||||
-rw-r--r-- | src/update_walk.c | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/update_remove.c b/src/update_remove.c index bf3d88db6..a60f0cb98 100644 --- a/src/update_remove.c +++ b/src/update_remove.c @@ -17,6 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "config.h" /* must be first for large file support */ #include "update_internal.h" #include "notify.h" #include "event_pipe.h" @@ -54,7 +55,7 @@ song_remove_event(void) #ifdef ENABLE_SQLITE /* if the song has a sticker, remove it */ if (sticker_enabled()) - sticker_song_remove(song); + sticker_song_delete(removed_song); #endif playlist_delete_song(&g_playlist, removed_song); diff --git a/src/update_walk.c b/src/update_walk.c index 2c1049472..265c976b5 100644 --- a/src/update_walk.c +++ b/src/update_walk.c @@ -17,6 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "config.h" /* must be first for large file support */ #include "update_internal.h" #include "database.h" #include "exclude.h" @@ -29,6 +30,10 @@ #include "decoder_plugin.h" #include "conf.h" +#ifdef ENABLE_ARCHIVE +#include "archive_list.h" +#endif + #include <glib.h> #include <assert.h> |