зеркало из https://github.com/microsoft/git.git
bisect.c: use die_errno() and warning_errno()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
fd1d672300
Коммит
23e7a312e1
7
bisect.c
7
bisect.c
|
@ -860,8 +860,8 @@ static void check_good_are_ancestors_of_bad(const char *prefix, int no_checkout)
|
|||
/* Create file BISECT_ANCESTORS_OK. */
|
||||
fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
|
||||
if (fd < 0)
|
||||
warning("could not create file '%s': %s",
|
||||
filename, strerror(errno));
|
||||
warning_errno("could not create file '%s'",
|
||||
filename);
|
||||
else
|
||||
close(fd);
|
||||
done:
|
||||
|
@ -910,8 +910,7 @@ void read_bisect_terms(const char **read_bad, const char **read_good)
|
|||
*read_good = "good";
|
||||
return;
|
||||
} else {
|
||||
die("could not read file '%s': %s", filename,
|
||||
strerror(errno));
|
||||
die_errno("could not read file '%s'", filename);
|
||||
}
|
||||
} else {
|
||||
strbuf_getline_lf(&str, fp);
|
||||
|
|
Загрузка…
Ссылка в новой задаче