From d2586fce485240801bdfdd73ad4679b9c88bc659 Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Thu, 3 Apr 2014 16:07:43 -0700 Subject: Avoid static declarations of arrays with unknown size. Visual studio does not like it. This commit is similar to commit 3815d6c2c (Avoid designated initializers and static decls of arrays of unknown size.) but touches more files. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- tests/test-lockfile.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'tests/test-lockfile.c') diff --git a/tests/test-lockfile.c b/tests/test-lockfile.c index 80cc5a84a..0bf3fe6dd 100644 --- a/tests/test-lockfile.c +++ b/tests/test-lockfile.c @@ -35,7 +35,7 @@ struct test { void (*function)(void); }; -static const struct test tests[]; +static void run_help(void); #define CHECK(A, B) check(A, B, #A, #B, __FILE__, __LINE__) static void @@ -237,19 +237,6 @@ run_lock_symlink_to_dir(void) lockfile_unlock(a); } -static void -run_help(void) -{ - size_t i; - - printf("usage: %s TESTNAME\n" - "where TESTNAME is one of the following:\n", - program_name); - for (i = 0; tests[i].name; i++) { - fprintf(stderr, "\t%s\n", tests[i].name); - } -} - static const struct test tests[] = { #define TEST(NAME) { #NAME, run_##NAME } TEST(lock_and_unlock), @@ -267,6 +254,19 @@ static const struct test tests[] = { #undef TEST }; +static void +run_help(void) +{ + size_t i; + + printf("usage: %s TESTNAME\n" + "where TESTNAME is one of the following:\n", + program_name); + for (i = 0; tests[i].name; i++) { + fprintf(stderr, "\t%s\n", tests[i].name); + } +} + static void test_lockfile_main(int argc, char *argv[]) { -- cgit v1.2.1