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) {
}
}
else {
LOG("removing directory: ");
LOG("%s/",getDirectoryPath(directory));
LOG("%s\n",node->key);
LOG("removing directory: %s/%s\n",
getDirectoryPath(directory), node->key);
deleteFromList(directory->subDirectories, node->key);
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