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/Scene.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/Scene.h')
-rw-r--r--source/blender/python/api2_2x/Scene.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Scene.h b/source/blender/python/api2_2x/Scene.h
index c6905d56be2..0c04dd498f0 100644
--- a/source/blender/python/api2_2x/Scene.h
+++ b/source/blender/python/api2_2x/Scene.h
@@ -37,7 +37,7 @@
#include <DNA_scene_types.h>
/* The Scene PyType Object defined in Scene.c */
-PyTypeObject Scene_Type;
+extern PyTypeObject Scene_Type;
#define BPy_Scene_Check(v) \
((v)->ob_type == &Scene_Type)