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>2013-06-24 07:06:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-24 07:06:32 +0400
commit423ee06625898d5094bfc78401b2e2204fe7118e (patch)
tree2ab15687962b1700319742ff17dab5dfd35ecf38 /source/blender/python
parent0f4802817340794b50b09daead59c54e33caf09d (diff)
use booleans for bpath api.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 775cce3880b..aa4b8117e3a 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -90,7 +90,7 @@ static PyObject *bpy_script_paths(PyObject *UNUSED(self))
return ret;
}
-static int bpy_blend_paths_visit_cb(void *userdata, char *UNUSED(path_dst), const char *path_src)
+static bool bpy_blend_paths_visit_cb(void *userdata, char *UNUSED(path_dst), const char *path_src)
{
PyObject *list = (PyObject *)userdata;
PyObject *item = PyUnicode_DecodeFSDefault(path_src);