check-racy.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>
maint
Nguyễn Thái Ngọc Duy 2016-05-08 16:47:35 +07:00 committed by Junio C Hamano
parent 8d19e93094
commit eb031a5801
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ int main(int ac, char **av)
struct stat st;

if (lstat(ce->name, &st)) {
error("lstat(%s): %s", ce->name, strerror(errno));
error_errno("lstat(%s)", ce->name);
continue;
}