mirror of
https://github.com/git/git.git
synced 2026-02-18 05:39:11 +00:00
Merge branch 'mh/fetch-filter-refs' into next
Code simplification and clarification. Will merge to 'master' as part of the seventh batch. * mh/fetch-filter-refs: test-string-list.c: Fix some sparse warnings
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* list (as opposed to "", which indicates a string list containing a
|
||||
* single empty string). list->strdup_strings must be set.
|
||||
*/
|
||||
void parse_string_list(struct string_list *list, const char *arg)
|
||||
static void parse_string_list(struct string_list *list, const char *arg)
|
||||
{
|
||||
if (!strcmp(arg, "-"))
|
||||
return;
|
||||
@@ -15,14 +15,14 @@ void parse_string_list(struct string_list *list, const char *arg)
|
||||
(void)string_list_split(list, arg, ':', -1);
|
||||
}
|
||||
|
||||
void write_list(const struct string_list *list)
|
||||
static void write_list(const struct string_list *list)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < list->nr; i++)
|
||||
printf("[%d]: \"%s\"\n", i, list->items[i].string);
|
||||
}
|
||||
|
||||
void write_list_compact(const struct string_list *list)
|
||||
static void write_list_compact(const struct string_list *list)
|
||||
{
|
||||
int i;
|
||||
if (!list->nr)
|
||||
@@ -35,7 +35,7 @@ void write_list_compact(const struct string_list *list)
|
||||
}
|
||||
}
|
||||
|
||||
int prefix_cb(struct string_list_item *item, void *cb_data)
|
||||
static int prefix_cb(struct string_list_item *item, void *cb_data)
|
||||
{
|
||||
const char *prefix = (const char *)cb_data;
|
||||
return !prefixcmp(item->string, prefix);
|
||||
|
||||
Reference in New Issue
Block a user