зеркало из https://github.com/microsoft/git.git
Merge branch 'ss/submodule-foreach-cb'
Code clean-up. * ss/submodule-foreach-cb: submodule--helper.c: Rename 'cb_foreach' to 'foreach_cb'
This commit is contained in:
Коммит
d4bd8049b2
|
@ -444,19 +444,19 @@ static void for_each_listed_submodule(const struct module_list *list,
|
|||
fn(list->entries[i], cb_data);
|
||||
}
|
||||
|
||||
struct cb_foreach {
|
||||
struct foreach_cb {
|
||||
int argc;
|
||||
const char **argv;
|
||||
const char *prefix;
|
||||
int quiet;
|
||||
int recursive;
|
||||
};
|
||||
#define CB_FOREACH_INIT { 0 }
|
||||
#define FOREACH_CB_INIT { 0 }
|
||||
|
||||
static void runcommand_in_submodule_cb(const struct cache_entry *list_item,
|
||||
void *cb_data)
|
||||
{
|
||||
struct cb_foreach *info = cb_data;
|
||||
struct foreach_cb *info = cb_data;
|
||||
const char *path = list_item->name;
|
||||
const struct object_id *ce_oid = &list_item->oid;
|
||||
|
||||
|
@ -557,7 +557,7 @@ cleanup:
|
|||
|
||||
static int module_foreach(int argc, const char **argv, const char *prefix)
|
||||
{
|
||||
struct cb_foreach info = CB_FOREACH_INIT;
|
||||
struct foreach_cb info = FOREACH_CB_INIT;
|
||||
struct pathspec pathspec;
|
||||
struct module_list list = MODULE_LIST_INIT;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче