changed a return value for Irix compiler

This commit is contained in:
Jacques Guignot 2003-08-07 13:20:25 +00:00
parent 1e433aeb58
commit d24761807d

@ -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 */
}