diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2022-01-20 15:12:04 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-20 11:31:52 -0800 |
commit | f5f6a6cd47405f32c0217b980cb8ae1c5cce316c (patch) | |
tree | 9bacf692a7b991351e46390240ecf12e287fae8b /reftable | |
parent | reftable: check reftable_stack_auto_compact() return value (diff) | |
download | tgif-f5f6a6cd47405f32c0217b980cb8ae1c5cce316c.tar.xz |
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>
Diffstat (limited to 'reftable')
-rw-r--r-- | reftable/stack_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reftable/stack_test.c b/reftable/stack_test.c index d628420e63..4b7292945c 100644 --- a/reftable/stack_test.c +++ b/reftable/stack_test.c @@ -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) |