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>2011-10-28 16:57:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-28 16:57:37 +0400
commit07019829339242d5155e08daddec4366c6def907 (patch)
treec0ab3791d4d4d2e989fd2fece114e722efdc7dcb /source/blender/blenlib
parentf5cf23888490c85cb7a23f05259daff6e369cbac (diff)
parent0d63bb005ff7c45ca0ebcfbe4eaf1215dfe2d3e2 (diff)
svn merge -r41329:41335 ^/trunk/blender
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_rotation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_rotation.c b/source/blender/blenlib/intern/math_rotation.c
index 51d12f5430e..0ca8b72c1e3 100644
--- a/source/blender/blenlib/intern/math_rotation.c
+++ b/source/blender/blenlib/intern/math_rotation.c
@@ -53,7 +53,7 @@ void unit_qt(float q[4])
q[1]= q[2]= q[3]= 0.0f;
}
-void copy_qt_qt(float *q1, const float *q2)
+void copy_qt_qt(float q1[4], const float q2[4])
{
q1[0]= q2[0];
q1[1]= q2[1];