diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:35 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:35 +0200 |
commit | 8a50e8a2663b5afd2fb3c80ea3424f3e68e14695 (patch) | |
tree | d20a5c381a452386cee06ed5ab16d4b4124f9071 /src/update.c | |
parent | ba5c9b0375b84456553b9b57cb68cb204c1d9418 (diff) | |
download | mpd-8a50e8a2663b5afd2fb3c80ea3424f3e68e14695.tar.gz mpd-8a50e8a2663b5afd2fb3c80ea3424f3e68e14695.tar.xz mpd-8a50e8a2663b5afd2fb3c80ea3424f3e68e14695.zip |
directory: moved code to database.c
Taming the directory.c monster, part II: move the database management
stuff to database. directory.c should only contain code which works
on directory objects.
Diffstat (limited to '')
-rw-r--r-- | src/update.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/update.c b/src/update.c index f4ac7096c..843d9ae79 100644 --- a/src/update.c +++ b/src/update.c @@ -18,6 +18,7 @@ */ #include "update.h" +#include "database.h" #include "directory.h" #include "song.h" #include "log.h" |