reftable: rename writer_stats to reftable_writer_stats

This function is part of the reftable API, so it should use the
reftable_ prefix

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Han-Wen Nienhuys
2022-02-21 18:46:10 +00:00
committed by Junio C Hamano
parent 3c443a02a9
commit 73a4c188b7
3 changed files with 7 additions and 7 deletions

View File

@ -695,7 +695,7 @@ static int writer_flush_block(struct reftable_writer *w)
return writer_flush_nonempty_block(w);
}
const struct reftable_stats *writer_stats(struct reftable_writer *w)
const struct reftable_stats *reftable_writer_stats(struct reftable_writer *w)
{
return &w->stats;
}