diff options
Diffstat (limited to 'core/taxonomy.c')
-rw-r--r-- | core/taxonomy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/taxonomy.c b/core/taxonomy.c index 9592843f0..1747a78cf 100644 --- a/core/taxonomy.c +++ b/core/taxonomy.c @@ -42,7 +42,7 @@ void free_taxonomy(struct taxonomy_data *t) } } -void copy_taxonomy(struct taxonomy_data *orig, struct taxonomy_data *copy) +void copy_taxonomy(const struct taxonomy_data *orig, struct taxonomy_data *copy) { if (orig->category == NULL) { free_taxonomy(copy); @@ -63,7 +63,7 @@ void copy_taxonomy(struct taxonomy_data *orig, struct taxonomy_data *copy) } } -int taxonomy_index_for_category(struct taxonomy_data *t, enum taxonomy_category cat) +int taxonomy_index_for_category(const struct taxonomy_data *t, enum taxonomy_category cat) { for (int i = 0; i < t->nr; i++) if (t->category[i].category == cat) |