Fix stupid (harmless) mistake in recent commit.

This commit is contained in:
Bastien Montagne 2016-07-21 16:25:12 +02:00
parent 77ff125232
commit 2969b30813
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ Group *BKE_group_copy(Main *bmain, Group *group)
void BKE_group_make_local(Main *bmain, Group *group, const bool lib_local)
{
BKE_id_make_local_generic(bmain, group, true, lib_local);
BKE_id_make_local_generic(bmain, &group->id, true, lib_local);
}
/* external */