summaryrefslogtreecommitdiff
path: root/upb/refcounted.c
diff options
context:
space:
mode:
Diffstat (limited to 'upb/refcounted.c')
-rw-r--r--upb/refcounted.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/upb/refcounted.c b/upb/refcounted.c
index ca97d9f..40e6e89 100644
--- a/upb/refcounted.c
+++ b/upb/refcounted.c
@@ -399,7 +399,7 @@ static upb_refcounted *pop(tarjan *t) {
return r;
}
-static void newgroup(tarjan *t) {
+static void tarjan_newgroup(tarjan *t) {
uint32_t *group = malloc(sizeof(*group));
if (!group) oom(t);
// Push group and empty group leader (we'll fill in leader later).
@@ -493,7 +493,7 @@ static void do_tarjan(const upb_refcounted *obj, tarjan *t) {
push(t, obj);
visit(obj, tarjan_visit, t);
if (lowlink(t, obj) == idx(t, obj)) {
- newgroup(t);
+ tarjan_newgroup(t);
while (pop(t) != obj)
;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback