Signed-off-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> --- Hi Jeff, If you need to re-roll your 'jk/quarantine-received-objects' branch, could you please squash this into the relevant patches. [I also note that tmp_objdir_destroy(), declared to be part of the public interface, is not currently called from outside tmp_objdir.c. Despite being unlikely, it is at least plausible that this function may be useful in future. ;-) ] Thanks! ATB, Ramsay Jones builtin/receive-pack.c | 2 +- tmp-objdir.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index 25afa3f..4194088 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -87,7 +87,7 @@ static enum { } use_keepalive; static int keepalive_in_sec = 5; -struct tmp_objdir *tmp_objdir; +static struct tmp_objdir *tmp_objdir; static enum deny_action parse_deny_action(const char *var, const char *value) { diff --git a/tmp-objdir.c b/tmp-objdir.c index 2181a42..3a58404 100644 --- a/tmp-objdir.c +++ b/tmp-objdir.c @@ -17,7 +17,7 @@ struct tmp_objdir { * more than one, and we can expand later if so. You can have many such * tmp_objdirs simultaneously in many processes, of course. */ -struct tmp_objdir *the_tmp_objdir; +static struct tmp_objdir *the_tmp_objdir; static void tmp_objdir_free(struct tmp_objdir *t) { -- 2.10.0