quiet warnings and possible NULL checking crash fix for indentation functions.

This commit is contained in:
2012-01-20 23:03:41 +00:00
parent f08a8c5b15
commit a98a75346c
13 changed files with 29 additions and 23 deletions

View File

@@ -811,7 +811,7 @@ void single_axis_angle_to_mat3(float mat[3][3], const char axis, const float ang
mat[2][2] = 1.0f;
break;
default:
assert("invalid axis");
assert(0);
}
}