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:
authorStephen Swaney <sswaney@centurytel.net>2005-04-22 06:27:16 +0400
committerStephen Swaney <sswaney@centurytel.net>2005-04-22 06:27:16 +0400
commit9fb241c9304b74b0e1741afdf0e27b11133c3525 (patch)
tree9d3ea1810b81589b5a94321407e9b3d7ae7b3cda /source/blender/python/api2_2x/CurNurb.c
parentb89bddbf6f0dead42b3d93c7883d091fee43844a (diff)
fix compiler error with gcc 4.0. mismatched declarations.
Diffstat (limited to 'source/blender/python/api2_2x/CurNurb.c')
-rw-r--r--source/blender/python/api2_2x/CurNurb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/CurNurb.c b/source/blender/python/api2_2x/CurNurb.c
index caacd8b8c65..953ab260b1d 100644
--- a/source/blender/python/api2_2x/CurNurb.c
+++ b/source/blender/python/api2_2x/CurNurb.c
@@ -51,7 +51,7 @@ stuff in this section should be placed in bpy_types.h
*/
-extern PyMethodDef BPy_CurNurb_methods[];
+static PyMethodDef BPy_CurNurb_methods[];
PyObject *CurNurb_CreatePyObject( Nurb * blen_nurb );
static PyObject *CurNurb_setMatIndex( BPy_CurNurb * self, PyObject * args );
static PyObject *CurNurb_getMatIndex( BPy_CurNurb * self );