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>2008-04-18 01:15:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-18 01:15:53 +0400
commitf6a2f47cfedcfbc50743340418fc20d835a98645 (patch)
tree65656fd4e7bef967c76e00b871a75d7e50cebd58 /source/blender/python/api2_2x/Armature.c
parentfa66376e36fe47b228ae2ebf5e3d92118b35435a (diff)
warning fix from trunk
Diffstat (limited to 'source/blender/python/api2_2x/Armature.c')
-rw-r--r--source/blender/python/api2_2x/Armature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Armature.c b/source/blender/python/api2_2x/Armature.c
index a6cac6d725c..e9dff098773 100644
--- a/source/blender/python/api2_2x/Armature.c
+++ b/source/blender/python/api2_2x/Armature.c
@@ -178,7 +178,7 @@ static PyObject *BonesDict_repr(BPy_BonesDict *self)
{
char str[2048];
PyObject *key, *value;
- int pos = 0;
+ Py_ssize_t pos = 0;
char *p = str;
char *keys, *vals;