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-11-28 03:41:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-28 03:41:01 +0400
commita2e10608626a9b3bd8a17cf4264a54ce2f03ed6f (patch)
treed6635e2f0d3f83608097bda46d12d4d3cc57812b /source/blender/modifiers/intern/MOD_fluidsim_util.c
parent1ca7c2e4f3b8dd224782f5c05333fd327d7bc3b3 (diff)
quiet some warnings and logical errors.
- curve map insert point had a nested loop which used the same value to index different arrays. - dynamic paint used ternary operator where both outcomes were the same.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_fluidsim_util.c')
-rw-r--r--source/blender/modifiers/intern/MOD_fluidsim_util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_fluidsim_util.c b/source/blender/modifiers/intern/MOD_fluidsim_util.c
index 8696bd12502..6541b15f66e 100644
--- a/source/blender/modifiers/intern/MOD_fluidsim_util.c
+++ b/source/blender/modifiers/intern/MOD_fluidsim_util.c
@@ -572,6 +572,7 @@ DerivedMesh *fluidsimModifier_do(FluidsimModifierData *fluidmd, Scene *scene,
/* unused */
(void)fluidmd;
(void)scene;
+ (void)ob;
(void)dm;
(void)useRenderParams;
return NULL;