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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-07-20 01:04:33 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-07-20 01:04:33 +0400
commit4856071402459f0631bc430507f61513d5f10c99 (patch)
tree32cf125b6a204f2fd37c9669a36d66720ca91c7d /source/blender/python/api2_2x/Ipocurve.c
parentb2d1921d260ab0fa21ce220fb663350354d4aae2 (diff)
Exppython:
Still compilation problems, wrong type returned in a function.
Diffstat (limited to 'source/blender/python/api2_2x/Ipocurve.c')
-rw-r--r--source/blender/python/api2_2x/Ipocurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Ipocurve.c b/source/blender/python/api2_2x/Ipocurve.c
index ca1be596a33..cdf43125b35 100644
--- a/source/blender/python/api2_2x/Ipocurve.c
+++ b/source/blender/python/api2_2x/Ipocurve.c
@@ -131,7 +131,7 @@ struct BezTriple *bezt;
bezt = self->ipocurve->bezt + i;
PyList_Append( l, BezTriple_CreatePyObject(bezt));
}
- return l;
+ return 0;
}