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>2014-10-29 16:11:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-10-29 16:15:21 +0300
commit133f79e4492eca400d0e043733d43ca522cdb2b9 (patch)
tree52e0636dee671820e46b5bacdf5f799b48877db1 /source/blender/blenlib
parent5c633d3ba0601afc08e7e7f5021e3c23b94d07f6 (diff)
Cleanup: warnings, typos
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/path_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index d5af980e373..e3e13b0bcac 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -1580,7 +1580,7 @@ void BLI_make_existing_file(const char *name)
char di[FILE_MAX];
BLI_split_dir_part(name, di, sizeof(di));
- /* make if if the dir doesn't exist */
+ /* make if the dir doesn't exist */
BLI_dir_create_recursive(di);
}