Merge branch 'jc/utf8-fprintf' into maint
Code cleanup. * jc/utf8-fprintf: submodule--helper: do not call utf8_fprintf() unnecessarily
This commit is contained in:
commit
127c13aa41
@ -4,7 +4,6 @@
|
|||||||
#include "quote.h"
|
#include "quote.h"
|
||||||
#include "pathspec.h"
|
#include "pathspec.h"
|
||||||
#include "dir.h"
|
#include "dir.h"
|
||||||
#include "utf8.h"
|
|
||||||
#include "submodule.h"
|
#include "submodule.h"
|
||||||
#include "submodule-config.h"
|
#include "submodule-config.h"
|
||||||
#include "string-list.h"
|
#include "string-list.h"
|
||||||
@ -326,7 +325,7 @@ static int module_list(int argc, const char **argv, const char *prefix)
|
|||||||
printf("%06o %s %d\t", ce->ce_mode,
|
printf("%06o %s %d\t", ce->ce_mode,
|
||||||
oid_to_hex(&ce->oid), ce_stage(ce));
|
oid_to_hex(&ce->oid), ce_stage(ce));
|
||||||
|
|
||||||
utf8_fprintf(stdout, "%s\n", ce->name);
|
fprintf(stdout, "%s\n", ce->name);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -1038,7 +1037,7 @@ static int update_clone(int argc, const char **argv, const char *prefix)
|
|||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
for_each_string_list_item(item, &suc.projectlines)
|
for_each_string_list_item(item, &suc.projectlines)
|
||||||
utf8_fprintf(stdout, "%s", item->string);
|
fprintf(stdout, "%s", item->string);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user