From 6fa9a8bd7651b49a9e55e67e095de79c1a739b08 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Wed, 23 Nov 2016 11:29:21 +0100 Subject: [PATCH] When a view is cloned, a comment is added to the new view specifying the name of the cloned view --- src/obidms_taxonomy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obidms_taxonomy.c b/src/obidms_taxonomy.c index dc71557..3eafd85 100644 --- a/src/obidms_taxonomy.c +++ b/src/obidms_taxonomy.c @@ -1782,7 +1782,7 @@ int obi_taxonomy_add_local_taxon(OBIDMS_taxonomy_p tax, const char* name, const ((tax->taxa)->local_count)++; (tax->taxa)->buffer_size = (tax->taxa)->count; - // Add new name in names structure + // Add new name in names structure // TODO discuss because in OBITools1 the new names were not written in .ndx // Allocate memory for new name tax->names = (econameidx_t*) realloc(tax->names, sizeof(econameidx_t) + sizeof(econame_t) * ((tax->names)->count + 1)); if (tax->names == NULL)