Cosmetics

This commit is contained in:
hasufell 2014-05-13 14:05:10 +02:00
parent 5b53950def
commit b3b5c84d1c
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 3 additions and 3 deletions

View File

@ -417,11 +417,11 @@ HE_obj *parse_obj(char const * const obj_string)
obj = (HE_obj*) malloc(sizeof(HE_obj));
CHECK_PTR_VAL(obj);
obj->vertices = vertices;
obj->vc = vc;
obj->edges = edges;
obj->ec = ec;
obj->vertices = vertices;
obj->faces = faces;
obj->ec = ec;
obj->vc = vc;
obj->fc = fc;
free(string);