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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-01-24 17:43:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-01-24 17:43:37 +0400
commit7803b51b424fb90e40089003a3d9f25318097fe8 (patch)
tree5fe31066fcfd064120488c7129327a35e2d3a9e2 /source
parentf93d6758b747fb207b9608ef28bc9c07750bd79a (diff)
Fixed for strict compiler flags
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/intern/bpy_app_translations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_app_translations.c b/source/blender/python/intern/bpy_app_translations.c
index e9495b3e761..db99d6bcf92 100644
--- a/source/blender/python/intern/bpy_app_translations.c
+++ b/source/blender/python/intern/bpy_app_translations.c
@@ -608,7 +608,7 @@ static PyObject *app_translations_new(PyTypeObject *type, PyObject *UNUSED(args)
return (PyObject *)_translations;
}
-void app_translations_free(void *obj)
+static void app_translations_free(void *obj)
{
PyObject_Del(obj);
#ifdef WITH_INTERNATIONAL