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:
authorKen Hughes <khughes@pacific.edu>2007-03-17 17:46:04 +0300
committerKen Hughes <khughes@pacific.edu>2007-03-17 17:46:04 +0300
commit83e72cc813d8df8c5d0b2cb6e6e92e324c28787e (patch)
tree6b9507b1c05a3d48945e750581fb8f147c2b4bc4 /source/blender/python
parent8e43b3f950430d345e35d7643faaaf4b6122c961 (diff)
Fix various gcc warning, unused variables and incorrect type passed to
*printf functions.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/api2_2x/Curve.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Curve.c b/source/blender/python/api2_2x/Curve.c
index 50dc663d439..83435a1da7a 100644
--- a/source/blender/python/api2_2x/Curve.c
+++ b/source/blender/python/api2_2x/Curve.c
@@ -1306,7 +1306,6 @@ static PyGetSetDef Curve_getseters[] = {
/*****************************************************************************/
static PyObject *M_Curve_New( PyObject * self, PyObject * args )
{
- char buf[24];
char *name = "Curve";
BPy_Curve *pycurve; /* for Curve Data object wrapper in Python */
Curve *blcurve = 0; /* for actual Curve Data we create in Blender */