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-11-24 00:25:55 +0300
committerJacques Guignot <guignot@wanadoo.fr>2003-11-24 00:25:55 +0300
commit5a5ab6233610f5296524275e348c318c6e633f4f (patch)
tree9d8c69f2d88a4edd649431737d15f5b8f9df625a /source/blender/python/api2_2x/Ipocurve.c
parentd3563d23b7ce4b8da634a01e67660e4aa2a6d7ac (diff)
Fixed two minor warnings
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 f2061ac6f85..ab82a10ab66 100644
--- a/source/blender/python/api2_2x/Ipocurve.c
+++ b/source/blender/python/api2_2x/Ipocurve.c
@@ -127,7 +127,7 @@ static PyObject *IpoCurve_setExtrapolation( C_IpoCurve * self, PyObject *args)
static PyObject *IpoCurve_getExtrapolation( C_IpoCurve * self)
{
- char*str;
+ char*str = 0;
IpoCurve *icu = self->ipocurve;
if (icu->extrap == 0) str = "Constant";
if (icu->extrap == 1) str = "Extrapolation";