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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2017-01-31 08:59:11 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2017-01-31 09:00:31 +0300
commita928a9c1e199923090a6ea070332fb8003646590 (patch)
tree3e68e7021078304afc4559677a76b087266037a8 /source
parentd07e2416dbdfa89fd698aab2fda4804dd6368f1d (diff)
Fix compilation error: too few arguments to function call.
D2492 by @tomjpsun.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index e5393666a7e..ff8be5892e9 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -1204,7 +1204,7 @@ void BKE_object_make_local_ex(Main *bmain, Object *ob, const bool lib_local, con
if (lib_local || is_local) {
if (!is_lib) {
id_clear_lib_data(bmain, &ob->id);
- BKE_id_expand_local(&ob->id);
+ BKE_id_expand_local(bmain, &ob->id);
if (clear_proxy) {
if (ob->proxy_from != NULL) {
ob->proxy_from->proxy = NULL;