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:
authorChris Want <cwant@ualberta.ca>2004-11-14 04:03:01 +0300
committerChris Want <cwant@ualberta.ca>2004-11-14 04:03:01 +0300
commita7d624b2c1bd73b18905aecf19ba263c6c06b4db (patch)
treebc57ef447415aa0c625f8c30aefe6b0aba934b36 /source/blender/python/api2_2x/NMesh.h
parent59f08429ab8e33fee6a66d3f80b769dcc48eee37 (diff)
There were some variables that should have been declared extern,
but weren't ... no more bus error when exiting on irix!
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-rw-r--r--source/blender/python/api2_2x/NMesh.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h
index 3742ef72e07..6602e9a251c 100644
--- a/source/blender/python/api2_2x/NMesh.h
+++ b/source/blender/python/api2_2x/NMesh.h
@@ -48,10 +48,10 @@
#include "Image.h"
/* EXPP PyType Objects */
-PyTypeObject NMesh_Type;
-PyTypeObject NMFace_Type;
-PyTypeObject NMVert_Type;
-PyTypeObject NMCol_Type;
+extern PyTypeObject NMesh_Type;
+extern PyTypeObject NMFace_Type;
+extern PyTypeObject NMVert_Type;
+extern PyTypeObject NMCol_Type;
struct BPy_Object;