]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/bisect.c
bisect--helper: convert `vocab_*` char pointers to char arrays
authorMiriam Rubio <mirucam@gmail.com>
Mon, 17 Feb 2020 08:40:28 +0000 (09:40 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Feb 2020 17:37:14 +0000 (09:37 -0800)
commit16538bfd2c429a81a86011f32afa189047afd6e5
treea13660900f8d7f8ed621b7c96ba4f5765828169f
parentd0654dc308b0ba76dd8ed7bbb33c8d8f7aacd783
bisect--helper: convert `vocab_*` char pointers to char arrays

Instead of using a pointer that points at a constant string,
just give name directly to the constant string; this way, we
do not have to allocate a pointer variable in addition to
the string we want to use.

Let's convert `vocab_bad` and `vocab_good` char pointers to char arrays.

Mentored-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Miriam Rubio <mirucam@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/bisect--helper.c