Remove spurious ";" in declaration, which causes warning in gcc and MSVC. Thanks Levi for catching this.

This commit is contained in:
Ken Hughes
2007-07-27 18:29:58 +00:00
parent 665ace6fd6
commit c3457718a4

View File

@@ -1,5 +1,5 @@
/** /**
* $Id$ * $Id: $
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
@@ -488,7 +488,7 @@ RayTree *RE_ray_tree_create(int ocres, int totface, float *min, float *max, RayC
void RE_ray_tree_add_face(RayTree *tree, RayFace *face) void RE_ray_tree_add_face(RayTree *tree, RayFace *face)
{ {
Octree *oc = (Octree*)tree;; Octree *oc = (Octree*)tree;
float *v1, *v2, *v3, *v4, ocfac[3], rtf[4][3]; float *v1, *v2, *v3, *v4, ocfac[3], rtf[4][3];
short rts[4][3], ocmin[6], *ocmax; short rts[4][3], ocmin[6], *ocmax;
char *ocface= oc->ocface; // front, top, size view of face, to fill in char *ocface= oc->ocface; // front, top, size view of face, to fill in