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>2011-02-12 08:12:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-12 08:12:26 +0300
commit92672d0c1c2797d0068f5f71b13b5e521253b618 (patch)
tree38edc43df2ed2dbf44e3170e9e9fb9a45df8da2d /source/blender/blenlib
parent5470a7af5dfd3a3f8070bddfd8dab496c6229720 (diff)
quiet some clang warnings.
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 aa5a775c746..5d68fbe6e92 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -459,7 +459,7 @@ void BLI_path_rel(char *file, const char *relfile)
char *p= temp;
char *q= file;
- while ((*p == *q)) {
+ while (*p == *q) {
++p; ++q;
/* dont search beyond the end of the string
* in the rare case they match */