From 7e7a85f90743b53e8c676487f3a51f108e6aa850 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 23 Jun 2014 16:55:04 +0200 Subject: 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. --- source/blender/blenlib/intern/fileops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/fileops.c') 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; } } -- cgit v1.2.3