Fix compiler warning.

bb and mselect are different struct, gcc warning about assignment
incompatible pointer.
This commit is contained in:
Diego Borghetti
2007-08-11 20:45:27 +00:00
parent bd5e0a9246
commit c8332ccff1

View File

@@ -2549,7 +2549,8 @@ static void direct_link_mesh(FileData *fd, Mesh *mesh)
direct_link_customdata(fd, &mesh->edata, mesh->pv ? mesh->pv->totedge : mesh->totedge);
direct_link_customdata(fd, &mesh->fdata, mesh->pv ? mesh->pv->totface : mesh->totface);
mesh->bb= mesh->mselect = NULL;
mesh->bb= NULL;
mesh->mselect = NULL;
/* Multires data */
mesh->mr= newdataadr(fd, mesh->mr);