Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-12-15 06:48:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-15 06:48:25 +0400
commitcc32540c48ebf53a66b2f0df6ff8d0ca23dc4785 (patch)
tree6b44bdfb41da35a71c0ec9201e1af42dcf77cb0c /source/blender/blenlib/intern/math_matrix.c
parent1b37f8dca85578ad2bf5f8202568d00b91d194b8 (diff)
style cleanup: stop the style checker script from complaining about '!*ptr'
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c2
1 files changed, 1 insertions, 1 deletions
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);