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/sceneRender.c
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/sceneRender.c')
-rw-r--r--source/blender/python/api2_2x/sceneRender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/sceneRender.c b/source/blender/python/api2_2x/sceneRender.c
index d4a23c9e464..f90c8f0158a 100644
--- a/source/blender/python/api2_2x/sceneRender.c
+++ b/source/blender/python/api2_2x/sceneRender.c
@@ -64,7 +64,7 @@
#define PY_SKYDOME 1
#define PY_FULL 2
-RE_Render R;
+extern RE_Render R;
//---------------------------------------Render prototypes-------------
static PyObject *M_Render_CloseRenderWindow( PyObject * self );