[Bf-blender-cvs] [5347aa40d57] master: Fix compiler warnings from own recent rB0d5c7e5e36b9.

Bastien Montagne noreply at git.blender.org
Mon Jun 19 14:44:54 CEST 2017


Commit: 5347aa40d57e86774c1022d143234dae3b627aea
Author: Bastien Montagne
Date:   Mon Jun 19 14:43:44 2017 +0200
Branches: master
https://developer.blender.org/rB5347aa40d57e86774c1022d143234dae3b627aea

Fix compiler warnings from own recent rB0d5c7e5e36b9.

===================================================================

M	source/blender/modifiers/intern/MOD_dynamicpaint.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_dynamicpaint.c b/source/blender/modifiers/intern/MOD_dynamicpaint.c
index d54e052e438..83a42504180 100644
--- a/source/blender/modifiers/intern/MOD_dynamicpaint.c
+++ b/source/blender/modifiers/intern/MOD_dynamicpaint.c
@@ -62,11 +62,11 @@ static void copyData(ModifierData *md, ModifierData *target)
 
 	if (tpmd->canvas) {
 		for (DynamicPaintSurface *surface = tpmd->canvas->surfaces.first; surface; surface = surface->next) {
-			id_us_plus(surface->init_texture);
+			id_us_plus((ID *)surface->init_texture);
 		}
 	}
 	if (tpmd->brush) {
-		id_us_plus(tpmd->brush->mat);
+		id_us_plus((ID *)tpmd->brush->mat);
 	}
 }




More information about the Bf-blender-cvs mailing list