Commit: dcbc09e42938b44a7978acb7987ee65253c85394
Author: Campbell Barton
Date:   Sun Mar 3 02:29:43 2019 +1100
Branches: master
https://developer.blender.org/rBdcbc09e42938b44a7978acb7987ee65253c85394

Cleanup: comma warning

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

M       source/blender/makesdna/intern/dna_utils.c

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

diff --git a/source/blender/makesdna/intern/dna_utils.c 
b/source/blender/makesdna/intern/dna_utils.c
index f31aec92e0f..30c82367a37 100644
--- a/source/blender/makesdna/intern/dna_utils.c
+++ b/source/blender/makesdna/intern/dna_utils.c
@@ -267,7 +267,7 @@ void DNA_alias_maps(
                for (int i = 0; i < ARRAY_SIZE(data); i++) {
                        const char **str_pair = MEM_mallocN(sizeof(char *) * 2, 
__func__);
                        str_pair[0] = 
BLI_ghash_lookup_default(struct_map_local, data[i][0], (void *)data[i][0]);
-                       str_pair[1] = data[i][elem_key],
+                       str_pair[1] = data[i][elem_key];
                        BLI_ghash_insert(elem_map, str_pair, (void 
*)data[i][elem_val]);
                }
                *r_elem_map = elem_map;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to