http: rename 'new' 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>
This commit is contained in:
Brandon Williams 2018-02-14 10:59:42 -08:00 committed by Junio C Hamano
parent d8f71807c1
commit ee6e065351

10
http.c
View File

@ -1194,14 +1194,14 @@ static struct fill_chain *fill_cfg;
void add_fill_function(void *data, int (*fill)(void *))
{
struct fill_chain *new = xmalloc(sizeof(*new));
struct fill_chain *new_fill = xmalloc(sizeof(*new_fill));
struct fill_chain **linkp = &fill_cfg;
new->data = data;
new->fill = fill;
new->next = NULL;
new_fill->data = data;
new_fill->fill = fill;
new_fill->next = NULL;
while (*linkp)
linkp = &(*linkp)->next;
*linkp = new;
*linkp = new_fill;
}
void fill_active_slots(void)