1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

reftable: ignore remove() return value in stack_test.c

If the cleanup fails, there is nothing we can do.

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Han-Wen Nienhuys 2022-01-20 15:12:04 +00:00 committed by Junio C Hamano
parent f7445865f2
commit f5f6a6cd47

View File

@ -89,7 +89,7 @@ static void test_read_file(void)
EXPECT(0 == strcmp(want[i], names[i]));
}
free_names(names);
remove(fn);
(void) remove(fn);
}
static void test_parse_names(void)