A bit of cleanup of warnings (gcc).
Warnings still exist in the following places: * places (exotic.c, etc.) where format strings still use 'longs' but datatype is uintptr_t (i.e. resulting from the win64 changes) * shrinkwrap.c - a few "incompatable type" warnings
This commit is contained in:
@@ -38,6 +38,7 @@
|
||||
struct Object;
|
||||
struct ListBase;
|
||||
struct bDeformGroup;
|
||||
struct MDeformVert;
|
||||
|
||||
void copy_defgroups (struct ListBase *lb1, struct ListBase *lb2);
|
||||
struct bDeformGroup *copy_defgroup (struct bDeformGroup *ingroup);
|
||||
|
||||
@@ -804,7 +804,7 @@ static PyObject *Part_GetLoc( BPy_PartSys * self, PyObject * args )
|
||||
{
|
||||
ParticleSystem *psys = 0L;
|
||||
Object *ob = 0L;
|
||||
PyObject *partlist,*seglist;
|
||||
PyObject *partlist,*seglist=0L;
|
||||
ParticleCacheKey **cache,*path;
|
||||
PyObject* loc = 0L;
|
||||
ParticleKey state;
|
||||
@@ -1107,7 +1107,7 @@ static PyObject *Part_GetSize( BPy_PartSys * self, PyObject * args )
|
||||
ParticleSystem *psys = 0L;
|
||||
ParticleData *data;
|
||||
Object *ob = 0L;
|
||||
PyObject *partlist,*tuple;
|
||||
PyObject *partlist,*tuple=0L;
|
||||
DerivedMesh* dm;
|
||||
float vm[4][4],wm[4][4];
|
||||
float size;
|
||||
@@ -1217,7 +1217,7 @@ static PyObject *Part_GetAge( BPy_PartSys * self, PyObject * args )
|
||||
ParticleSystem *psys = 0L;
|
||||
ParticleData *data;
|
||||
Object *ob = 0L;
|
||||
PyObject *partlist,*tuple;
|
||||
PyObject *partlist,*tuple=0L;
|
||||
DerivedMesh* dm;
|
||||
float vm[4][4],wm[4][4];
|
||||
float life;
|
||||
|
||||
Reference in New Issue
Block a user