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-04-07 08:25:31 +0400
committerJoshua Leung <aligorith@gmail.com>2007-04-07 08:25:31 +0400
commit4fae78f8d9e1acd55a5d068ea4f161687c8efc0c (patch)
treeebf622fd291fa1ebed91b5b4eb38e3ee6f093ffe /source/blender/src/editconstraint.c
parentb1c8a1eefb4204be8899cb80599c36aa425ed53d (diff)
Missing ; at the end of a line in initial commit for ClampTo constraint.
Diffstat (limited to 'source/blender/src/editconstraint.c')
-rw-r--r--source/blender/src/editconstraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editconstraint.c b/source/blender/src/editconstraint.c
index f9e8175b1d1..2eef0f55978 100644
--- a/source/blender/src/editconstraint.c
+++ b/source/blender/src/editconstraint.c
@@ -760,7 +760,7 @@ void add_constraint(int only_IK)
else if(nr==17) {
Curve *cu= obsel->data;
cu->flag |= CU_PATH;
- con = add_new_constraint(CONSTRAINT_TYPE_CLAMPTO)
+ con = add_new_constraint(CONSTRAINT_TYPE_CLAMPTO);
}
if(con==NULL) return; /* paranoia */