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:
authorCampbell Barton <ideasman42@gmail.com>2009-04-03 19:08:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-03 19:08:38 +0400
commite6985d31b589a232bb17dd4c156614df781b8dad (patch)
treef900fcd5c02ba34b4038fe73ba9d40976a575aa5 /source/gameengine/Ketsji/KX_GameObject.h
parentbc789af5a9ee62978412b67fbe3313d6636b5499 (diff)
Some users could not build with python 2.5, hopefully this fixes it.
Diffstat (limited to 'source/gameengine/Ketsji/KX_GameObject.h')
-rw-r--r--source/gameengine/Ketsji/KX_GameObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/KX_GameObject.h b/source/gameengine/Ketsji/KX_GameObject.h
index 4b136e268db..9ed35b6d26b 100644
--- a/source/gameengine/Ketsji/KX_GameObject.h
+++ b/source/gameengine/Ketsji/KX_GameObject.h
@@ -826,7 +826,7 @@ public:
static PyObject* pyattr_get_dir_dict(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
/* getitem/setitem */
- static int Map_Len(PyObject* self);
+ static Py_ssize_t Map_Len(PyObject* self);
static PyMappingMethods Mapping;
static PyObject* Map_GetItem(PyObject *self_v, PyObject *item);
static int Map_SetItem(PyObject *self_v, PyObject *key, PyObject *val);