Commit cabc91b6 authored by J. Alexander Treuman's avatar J. Alexander Treuman

Fix log message when removing subdirectories.

git-svn-id: https://svn.musicpd.org/mpd/trunk@4185 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent c9b3498a
...@@ -401,9 +401,8 @@ int removeDeletedFromDirectory(Directory * directory, DIR * dir) { ...@@ -401,9 +401,8 @@ int removeDeletedFromDirectory(Directory * directory, DIR * dir) {
} }
} }
else { else {
LOG("removing directory: "); LOG("removing directory: %s/%s\n",
LOG("%s/",getDirectoryPath(directory)); getDirectoryPath(directory), node->key);
LOG("%s\n",node->key);
deleteFromList(directory->subDirectories, node->key); deleteFromList(directory->subDirectories, node->key);
ret = 1; ret = 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment