Making compiler happy;

- removed unused variables
- #if 0 around unused calls
- init of uninitialized vars
This commit is contained in:
2005-08-24 20:26:28 +00:00
parent dfb654ba60
commit a978c122ee
7 changed files with 7 additions and 11 deletions

View File

@@ -1646,7 +1646,7 @@ static void fill_quad_double_adj_path(EditFace *efa, struct GHash *gh, int numcu
static void fill_quad_double_adj_fan(EditFace *efa, struct GHash *gh, int numcuts)
{
EditEdge *cedge[2]={NULL, NULL};
EditVert *v[4], *op, **verts[2];
EditVert *v[4], *op=NULL, **verts[2];
EditFace *hold;
short start=0, start2=0, vertsize,i;
@@ -1709,7 +1709,7 @@ static void fill_quad_double_adj_fan(EditFace *efa, struct GHash *gh, int numcut
static void fill_quad_double_adj_inner(EditFace *efa, struct GHash *gh, int numcuts)
{
EditEdge *cedge[2]={NULL, NULL};
EditVert *v[4], *op, **verts[2],**inner;
EditVert *v[4], *op=NULL, **verts[2],**inner;
EditFace *hold;
short start=0, start2=0, vertsize,i;
float co[3];
@@ -1754,7 +1754,7 @@ static void fill_quad_double_adj_inner(EditFace *efa, struct GHash *gh, int numc
|---*-----*---|
| * / |
* \ / |
| /* |
| * |
| / \ |
* \ |
| \ |