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:
authorJoshua Leung <aligorith@gmail.com>2007-07-30 15:10:30 +0400
committerJoshua Leung <aligorith@gmail.com>2007-07-30 15:10:30 +0400
commit655fb548aa68b4b8fd06c859d1015105ca7259bc (patch)
treea1a1ff91b6c0c7c80f7b467b7a4e40619fd75ffe /source/blender/blenlib
parent8b127a9bc1824746d6f70665a792f7d66b09e6fa (diff)
Removing some useless code, and fixed a few compiler warnings.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/arithb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c
index f403be6cd92..387e2227797 100644
--- a/source/blender/blenlib/intern/arithb.c
+++ b/source/blender/blenlib/intern/arithb.c
@@ -3305,7 +3305,7 @@ int point_in_tri_prism(float p[3], float v1[3], float v2[3], float v3[3])
/* point closest to v1 on line v2-v3 in 3D */
void PclosestVL3Dfl(float *closest, float *v1, float *v2, float *v3)
{
- float lambda, cp[3], len;
+ float lambda, cp[3];
lambda= lambda_cp_line_ex(v1, v2, v3, cp);