зеркало из https://github.com/microsoft/git.git
combine-diff.c: use error_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:
Родитель
eb031a5801
Коммит
4b94ec9b20
|
@ -1005,8 +1005,7 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
|
||||||
struct strbuf buf = STRBUF_INIT;
|
struct strbuf buf = STRBUF_INIT;
|
||||||
|
|
||||||
if (strbuf_readlink(&buf, elem->path, st.st_size) < 0) {
|
if (strbuf_readlink(&buf, elem->path, st.st_size) < 0) {
|
||||||
error("readlink(%s): %s", elem->path,
|
error_errno("readlink(%s)", elem->path);
|
||||||
strerror(errno));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
result_size = buf.len;
|
result_size = buf.len;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче