[util] Fix incorrect type in test-mat3

Fixes make check for gcc-11
This commit is contained in:
Bill Currie 2021-06-13 15:00:30 +09:00
parent 93167279fc
commit 36df16eefc
1 changed files with 2 additions and 1 deletions

View File

@ -127,7 +127,8 @@ test_transform2 (const vec3_t angles, const vec3_t scale)
vec3_t x, y;
quat_t rotation;
mat3_t mat;
vec3_t rot, sc, sh;
quat_t rot;
vec3_t sc, sh;
VectorCopy (v, x);
AngleQuat (angles, rotation);