mailmap.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:
parent
a26f4ed682
commit
60901e4c22
@ -189,8 +189,7 @@ static int read_mailmap_file(struct string_list *map, const char *filename,
|
||||
if (!f) {
|
||||
if (errno == ENOENT)
|
||||
return 0;
|
||||
return error("unable to open mailmap at %s: %s",
|
||||
filename, strerror(errno));
|
||||
return error_errno("unable to open mailmap at %s", filename);
|
||||
}
|
||||
|
||||
while (fgets(buffer, sizeof(buffer), f) != NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user