зеркало из https://github.com/microsoft/git.git
reachable.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:
Родитель
60901e4c22
Коммит
9a3acba1ca
|
@ -119,8 +119,7 @@ static int add_recent_loose(const unsigned char *sha1,
|
|||
*/
|
||||
if (errno == ENOENT)
|
||||
return 0;
|
||||
return error("unable to stat %s: %s",
|
||||
sha1_to_hex(sha1), strerror(errno));
|
||||
return error_errno("unable to stat %s", sha1_to_hex(sha1));
|
||||
}
|
||||
|
||||
add_recent_object(sha1, st.st_mtime, data);
|
||||
|
|
Загрузка…
Ссылка в новой задаче