diff options
author | John Keeping | 2016-08-13 11:52:51 +0100 |
---|---|---|
committer | John Keeping | 2016-10-01 11:46:55 +0100 |
commit | b19d889f6cb2b8ded469c1676dddb3c71751b0ee (patch) | |
tree | 9d87cf269daa24bbdf5c3ce1284171ac0170ef02 /shared.c | |
parent | d9dff37691633aa44524ecae216c103ea497e940 (diff) | |
download | cgit-b19d889f6cb2b8ded469c1676dddb3c71751b0ee.tar.gz cgit-b19d889f6cb2b8ded469c1676dddb3c71751b0ee.tar.bz2 cgit-b19d889f6cb2b8ded469c1676dddb3c71751b0ee.zip |
shared: make cgit_free_taginfo() public
We will use this function from ui-tag.c in the next patch.
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'shared.c')
-rw-r--r-- | shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ static struct refinfo *cgit_mk_refinfo(const char *refname, const struct object_ | |||
203 | return ref; | 203 | return ref; |
204 | } | 204 | } |
205 | 205 | ||
206 | static void cgit_free_taginfo(struct taginfo *tag) | 206 | void cgit_free_taginfo(struct taginfo *tag) |
207 | { | 207 | { |
208 | if (tag->tagger) | 208 | if (tag->tagger) |
209 | free(tag->tagger); | 209 | free(tag->tagger); |