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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-06-23 18:55:04 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-06-23 18:56:35 +0400
commit7e7a85f90743b53e8c676487f3a51f108e6aa850 (patch)
tree9612281a2c31936e40d39c8b37f28cc436bd7348 /source/blender/blenlib/intern/fileops.c
parent647870bc6af4fae4ec0408ede2da9f5b4dabe7f2 (diff)
Fix own typo in temp_data patch, (windows-only)
Don't know when this sneaked in, I did wrote that part of the patch on win VM with MSVC2013... :/ Note: letting asside warnings for now, then should not prevent building anyway.
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 c1a103b641e..6123553cd7c 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -320,7 +320,7 @@ static bool delete_recursive(const char *dir)
/* Skip! */
}
else if (S_ISDIR(fl->type)) {
- if (delete_recursive(fl->path) {
+ if (delete_recursive(fl->path)) {
err = true;
}
}