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>2010-04-25 19:24:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-25 19:24:18 +0400
commit93f420b6669bd17646255b0990b0904681718da8 (patch)
treeff2a29c89a70496575e255a6f6a7d66bb4c2d16e /source/blender/blenlib/intern
parent93bc6fb829c4ee1e32f7891ec0b4989d908f45e2 (diff)
correct typo's
Diffstat (limited to 'source/blender/blenlib/intern')
-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 84868915e6b..454663df1ae 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -621,7 +621,7 @@ int BLI_path_abs(char *path, const char *basepath)
char *lslash= BLI_last_slash(base);
if (lslash) {
int baselen= (int) (lslash-base) + 1;
- /* use path for for temp storage here, we copy back over it right away */
+ /* use path for temp storage here, we copy back over it right away */
BLI_strncpy(path, tmp+2, FILE_MAX);
memcpy(tmp, base, baselen);