Skip to content

Commit

Permalink
Fix a flexible array member of size 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ahomescu committed Oct 22, 2019
1 parent a131676 commit ace1fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/qcommon/cm_polylib.h
Expand Up @@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
typedef struct
{
int numpoints;
vec3_t p[4]; // variable sized
vec3_t p[]; // variable sized
} winding_t;

#define MAX_POINTS_ON_WINDING 64
Expand Down

0 comments on commit ace1fae

Please sign in to comment.