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>2014-05-27 08:42:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-27 08:42:22 +0400
commitc6a34e047c1d862ff16b4f925b5214b8dccf1004 (patch)
tree34a89c1d366ea94662983df0be34ca6851151953 /source/blender/blenlib/intern/math_vector.c
parent06a05e4dae3f5cf07844fb8491867f1143eb0441 (diff)
Correct ortho_v2_v2 arg size
Diffstat (limited to 'source/blender/blenlib/intern/math_vector.c')
-rw-r--r--source/blender/blenlib/intern/math_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c
index 7d3829f04d3..7cbbaaf383c 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -646,7 +646,7 @@ void ortho_v3_v3(float p[3], const float v[3])
/**
* no brainer compared to v3, just have for consistency.
*/
-void ortho_v2_v2(float p[3], const float v[3])
+void ortho_v2_v2(float p[2], const float v[2])
{
BLI_assert(p != v);