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:
authorJacques Guignot <guignot@wanadoo.fr>2003-08-07 17:20:25 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-08-07 17:20:25 +0400
commitd24761807dcd84ddaaae905d6a04181755239c60 (patch)
treec41eecdadbb2d014829ad7eb5a5e3f72dacb649f /source/blender/python/api2_2x/BezTriple.c
parent1e433aeb58ce874bfcb6f1cf6daf93702eacdb8b (diff)
changed a return value for Irix compiler
Diffstat (limited to 'source/blender/python/api2_2x/BezTriple.c')
-rw-r--r--source/blender/python/api2_2x/BezTriple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/BezTriple.c b/source/blender/python/api2_2x/BezTriple.c
index 888fd91c512..fb7de1b5d87 100644
--- a/source/blender/python/api2_2x/BezTriple.c
+++ b/source/blender/python/api2_2x/BezTriple.c
@@ -125,7 +125,7 @@ if (strcmp (name, "pt") == 0)return BezTriple_getPoints(self);
/*****************************************************************************/
static int BezTripleSetAttr (C_BezTriple *self, char *name, PyObject *value)
{
-if (strcmp (name, "pt") == 0)return BezTriple_setPoints(self,value);
+ if (strcmp (name, "pt") == 0) BezTriple_setPoints(self,value);
return 0; /* normal exit */
}