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-03-10 09:46:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-10 09:46:24 +0400
commit7d585ed47527d4f8ea3f2d0362f23564f812aa25 (patch)
tree43783272b27989d0f971c879207e2d3da3daae87 /source/blender/makesrna/intern/rna_ID.c
parent74857241607cd828acbb7b8b4e2f425beea802c8 (diff)
patch [#34103] check_for_dupid.patch
from Lawrence D'Oliveiro (ldo) - more comments - more uses of bool type - define symbol for length of in_use array in check_for_dupid
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index edc25ec3b6d..49c0c356461 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -261,7 +261,7 @@ static ID *rna_ID_copy(ID *id)
{
ID *newid;
- if (id_copy(id, &newid, 0)) {
+ if (id_copy(id, &newid, false)) {
if (newid) id_us_min(newid);
return newid;
}