about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2016-08-13 11:52:51 +0100
committerJohn Keeping <john@keeping.me.uk>2016-10-01 11:46:55 +0100
commitb19d889f6cb2b8ded469c1676dddb3c71751b0ee (patch)
tree9d87cf269daa24bbdf5c3ce1284171ac0170ef02
parentshared: remove return value from cgit_free_commitinfo() (diff)
downloadcgit-magenta-b19d889f6cb2b8ded469c1676dddb3c71751b0ee.tar.xz
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>
-rw-r--r--cgit.h1
-rw-r--r--shared.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h

index 7df0e3a..df42312 100644 --- a/cgit.h +++ b/cgit.h
@@ -344,6 +344,7 @@ extern int cgit_refs_cb(const char *refname, const struct object_id *oid, int flags, void *cb_data); extern void cgit_free_commitinfo(struct commitinfo *info); +extern void cgit_free_taginfo(struct taginfo *info); void cgit_diff_tree_cb(struct diff_queue_struct *q, struct diff_options *options, void *data); diff --git a/shared.c b/shared.c
index 3ada875..571fbba 100644 --- a/shared.c +++ b/shared.c
@@ -203,7 +203,7 @@ static struct refinfo *cgit_mk_refinfo(const char *refname, const struct object_ return ref; } -static void cgit_free_taginfo(struct taginfo *tag) +void cgit_free_taginfo(struct taginfo *tag) { if (tag->tagger) free(tag->tagger);