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>2019-03-02 18:29:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-02 18:29:43 +0300
commitdcbc09e42938b44a7978acb7987ee65253c85394 (patch)
treec9ffa644aa42de660bc80bf12bea805777fe3590 /source/blender/makesdna/intern
parentf67e81e295ac7da6857edc441e0ba582cfcd6424 (diff)
Cleanup: comma warning
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/dna_utils.c2
1 files changed, 1 insertions, 1 deletions
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;