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:
authorJoseph Gilbert <ascotan@gmail.com>2005-11-29 08:08:29 +0300
committerJoseph Gilbert <ascotan@gmail.com>2005-11-29 08:08:29 +0300
commit65ce2c2cee5d4d382ecef61f25f6abc348944290 (patch)
tree547d0574e956692530ac4083e440b292474a3ae9 /source/blender/python/api2_2x/Particle.c
parent9321e844bd144ea576755617780263935aef660c (diff)
* warnings fixes
Diffstat (limited to 'source/blender/python/api2_2x/Particle.c')
-rw-r--r--source/blender/python/api2_2x/Particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Particle.c b/source/blender/python/api2_2x/Particle.c
index ed448e2f631..d744204991b 100644
--- a/source/blender/python/api2_2x/Particle.c
+++ b/source/blender/python/api2_2x/Particle.c
@@ -298,7 +298,7 @@ PyObject *M_Particle_New( PyObject * self, PyObject * args )
"couldn't create Effect Data in Blender" );
}
- pyeffect->effect = bleffect;
+ pyeffect->effect = (PartEff *)bleffect;
BLI_addtail( &ob->effect, bleffect );
return ( PyObject * ) pyeffect;