Browse Source

pack-objects: rename 'this' variables

Rename C++ keyword in order to bring the codebase closer to being able
to be compiled with a C++ compiler.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Brandon Williams 7 years ago committed by Junio C Hamano
parent
commit
095b3b2c04
  1. 8
      builtin/pack-objects.c

8
builtin/pack-objects.c

@ -1376,10 +1376,10 @@ static void cleanup_preferred_base(void) @@ -1376,10 +1376,10 @@ static void cleanup_preferred_base(void)
it = pbase_tree;
pbase_tree = NULL;
while (it) {
struct pbase_tree *this = it;
it = this->next;
free(this->pcache.tree_data);
free(this);
struct pbase_tree *tmp = it;
it = tmp->next;
free(tmp->pcache.tree_data);
free(tmp);
}

for (i = 0; i < ARRAY_SIZE(pbase_tree_cache); i++) {

Loading…
Cancel
Save