]> git.ipfire.org Git - thirdparty/git.git/commitdiff
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)
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

index 1718df7f09899afb37facf3754556520d361e13c..36c09b72380f2291aecf4d0ede20290cd1dbb58d 100644 (file)
@@ -52,8 +52,8 @@ static void set_terms(struct bisect_terms *terms, const char *bad,
        terms->term_bad = xstrdup(bad);
 }
 
-static const char *vocab_bad = "bad|new";
-static const char *vocab_good = "good|old";
+static const char vocab_bad[] = "bad|new";
+static const char vocab_good[] = "good|old";
 
 /*
  * Check whether the string `term` belongs to the set of strings