diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-09-06 13:52:17 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-09-06 12:59:54 -0700 |
commit | 83c56bc34c4660c0d7bb725d475ddf7a1b3117d3 (patch) | |
tree | ba693ea7ddd9a487e8bb402b1f087b170016a792 /core/taxonomy.c | |
parent | ee2f4664705e139e90b28351f4d76a3e5fbab12d (diff) | |
download | subsurface-83c56bc34c4660c0d7bb725d475ddf7a1b3117d3.tar.gz |
cleanup: make taxonomy_index_for_category() local to taxonomy.c
This helper function is not used outside taxonomy.c anymore.
Let's hide this implementation detail.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/taxonomy.c')
-rw-r--r-- | core/taxonomy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/taxonomy.c b/core/taxonomy.c index 0c9f89957..c21a2e644 100644 --- a/core/taxonomy.c +++ b/core/taxonomy.c @@ -63,7 +63,7 @@ void copy_taxonomy(const struct taxonomy_data *orig, struct taxonomy_data *copy) } } -int taxonomy_index_for_category(const struct taxonomy_data *t, enum taxonomy_category cat) +static 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) |