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>2005-12-05 04:07:24 +0300
committerKen Hughes <khughes@pacific.edu>2005-12-05 04:07:24 +0300
commit00ce7c629f1ce972c57c9a871b4f892de45ed93d (patch)
tree4360dbb01255e0f0d58139f1444aecf03604aecb /source/blender/python/api2_2x/Blender.c
parentbc16c3bd7a1a7426b62cbf378cad9a2c6e9798b2 (diff)
-- remove unused variable "dict" which was giving compiler warnings.
Diffstat (limited to 'source/blender/python/api2_2x/Blender.c')
-rw-r--r--source/blender/python/api2_2x/Blender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Blender.c b/source/blender/python/api2_2x/Blender.c
index e00d39ee4ff..1bbb91fac7f 100644
--- a/source/blender/python/api2_2x/Blender.c
+++ b/source/blender/python/api2_2x/Blender.c
@@ -234,7 +234,7 @@ static PyObject *Blender_Set( PyObject * self, PyObject * args )
/*****************************************************************************/
static PyObject *Blender_Get( PyObject * self, PyObject * args )
{
- PyObject *ret = NULL, *dict = NULL;
+ PyObject *ret = NULL;
char *str = NULL;
if( !PyArg_ParseTuple( args, "s", &str ) )