From cc32540c48ebf53a66b2f0df6ff8d0ca23dc4785 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 15 Dec 2012 02:48:25 +0000 Subject: style cleanup: stop the style checker script from complaining about '!*ptr' --- source/blender/blenlib/intern/math_matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/math_matrix.c') diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c index a0c372c13dc..3a294769eb3 100644 --- a/source/blender/blenlib/intern/math_matrix.c +++ b/source/blender/blenlib/intern/math_matrix.c @@ -1906,7 +1906,7 @@ void pseudoinverse_m4_m4(float Ainv[4][4], float A[4][4], float epsilon) void pseudoinverse_m3_m3(float Ainv[3][3], float A[3][3], float epsilon) { /* try regular inverse when possible, otherwise fall back to slow svd */ - if(!invert_m3_m3(Ainv, A)) { + if (!invert_m3_m3(Ainv, A)) { float tmp[4][4], tmpinv[4][4]; copy_m4_m3(tmp, A); -- cgit v1.2.3