From d24761807dcd84ddaaae905d6a04181755239c60 Mon Sep 17 00:00:00 2001 From: Jacques Guignot Date: Thu, 7 Aug 2003 13:20:25 +0000 Subject: [PATCH] changed a return value for Irix compiler --- source/blender/python/api2_2x/BezTriple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ }