diff options
Diffstat (limited to '')
-rw-r--r-- | src/directory.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/directory.c b/src/directory.c index 8e1904794..2464271f4 100644 --- a/src/directory.c +++ b/src/directory.c @@ -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; } |