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>2007-05-26 16:58:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-05-26 16:58:46 +0400
commitdeffce3c19ced621f3432a145b5b21b323ef9d6a (patch)
tree6b62be8dad8db2462dd6e99de2cf2255e6dda943 /source/blender/python/api2_2x/Lattice.c
parent30dd4fafd13e84ed7363c0c0f6ab17a384098450 (diff)
Key.c/h - Removed unneeded functions. and ipo in struct wasnt being used.
Lattice.c - removed warning Mesh.c - (own error) when running me.update(key="...") didnt update the right keyframe. mesh_cleanup.py - Bugfix from a report by plumiferos that started uncovering all the memory leaks. Removing NAN verts didnt work with mesh keyframes.
Diffstat (limited to 'source/blender/python/api2_2x/Lattice.c')
-rw-r--r--source/blender/python/api2_2x/Lattice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Lattice.c b/source/blender/python/api2_2x/Lattice.c
index 5c8df29d5d0..e58967a712b 100644
--- a/source/blender/python/api2_2x/Lattice.c
+++ b/source/blender/python/api2_2x/Lattice.c
@@ -677,7 +677,7 @@ static PyObject *Lattice_getLatSize(BPy_Lattice * self)
static PyObject *Lattice_getAxisType(BPy_Lattice * self, void * type)
{
- char interp_type = (char)NULL;
+ char interp_type = 0;
switch ( (int)type ) {
case 0:
interp_type = self->lattice->typeu;