[Bf-blender-cvs] [7cb0e1499d1] blender2.8: Fix compiler error in Windows

Antonioya noreply at git.blender.org
Tue Oct 23 13:13:15 CEST 2018


Commit: 7cb0e1499d121cf743c2400741aeff2bbd3325ff
Author: Antonioya
Date:   Tue Oct 23 13:13:04 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB7cb0e1499d121cf743c2400741aeff2bbd3325ff

Fix compiler error in Windows

===================================================================

M	source/blender/blenkernel/intern/collection.c

===================================================================

diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index ece79fe4b37..51e508d7744 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -231,7 +231,7 @@ Collection *BKE_collection_copy(Main *bmain, Collection *parent, Collection *col
 
 	Collection *collection_new;
 	BKE_id_copy_ex(bmain, &collection->id, (ID **)&collection_new, 0, false);
-	id_us_min(collection_new);  /* Copying add one user by default, need to get rid of that one. */
+	id_us_min(&collection_new->id);  /* Copying add one user by default, need to get rid of that one. */
 
 	/* Optionally add to parent. */
 	if (parent) {



More information about the Bf-blender-cvs mailing list