From: Denys Vlasenko Date: Sun, 2 Oct 2016 00:35:13 +0000 (+0200) Subject: test: fix compile error in last commit X-Git-Tag: 1_26_0~197 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=42eeb255c1c5f35373d3e7bfa892e4f864cf1266;p=oweals%2Fbusybox.git test: fix compile error in last commit Signed-off-by: Denys Vlasenko --- diff --git a/coreutils/test.c b/coreutils/test.c index afdb1413f..bf8dc47e8 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -394,7 +394,7 @@ extern struct test_statics *const test_ptr_to_statics; barrier(); \ } while (0) #define DEINIT_S() do { \ - free(S.group_array); \ + free(group_array); \ free(test_ptr_to_statics); \ } while (0)