Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-11-16 03:59:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-16 07:19:30 +0300
commit24d2e462962434468eca5b61ba6a8af47440a122 (patch)
tree36ca40b3791c9e43bcbd11e16469a2407fe0ecdc /source/blender/blenlib/intern/fileops.c
parent21195a9ea4b0c570224a517d78db2fcd36fa3d41 (diff)
Add missing newlines for debug prints
Diffstat (limited to 'source/blender/blenlib/intern/fileops.c')
-rw-r--r--source/blender/blenlib/intern/fileops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index ef9a7c0603f..5dc10143099 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -304,7 +304,7 @@ static bool delete_unique(const char *path, const bool dir)
if (dir) {
err = !RemoveDirectoryW(path_16);
- if (err) printf("Unable to remove directory");
+ if (err) printf("Unable to remove directory\n");
}
else {
err = !DeleteFileW(path_16);