mirror of
https://github.com/git/git.git
synced 2024-11-19 07:32:44 +01:00
help: 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:
parent
c8a3ea1f29
commit
8adda462a2
@ -194,11 +194,11 @@ static void do_add_man_viewer_info(const char *name,
|
||||
size_t len,
|
||||
const char *value)
|
||||
{
|
||||
struct man_viewer_info_list *new;
|
||||
FLEX_ALLOC_MEM(new, name, name, len);
|
||||
new->info = xstrdup(value);
|
||||
new->next = man_viewer_info_list;
|
||||
man_viewer_info_list = new;
|
||||
struct man_viewer_info_list *new_man_viewer;
|
||||
FLEX_ALLOC_MEM(new_man_viewer, name, name, len);
|
||||
new_man_viewer->info = xstrdup(value);
|
||||
new_man_viewer->next = man_viewer_info_list;
|
||||
man_viewer_info_list = new_man_viewer;
|
||||
}
|
||||
|
||||
static int add_man_viewer_path(const char *name,
|
||||
|
Loading…
Reference in New Issue
Block a user