From 2b37f33a221966628152144ddf050f731f8106d1 Mon Sep 17 00:00:00 2001 From: px4dev Date: Fri, 11 Jan 2013 02:39:56 -0800 Subject: [PATCH] The tests structure doesn't need to be writable. --- apps/px4/tests/tests_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/px4/tests/tests_main.c b/apps/px4/tests/tests_main.c index 26f7ef96bf..d994645466 100644 --- a/apps/px4/tests/tests_main.c +++ b/apps/px4/tests/tests_main.c @@ -78,7 +78,7 @@ static int test_jig(int argc, char *argv[]); * Private Data ****************************************************************************/ -struct { +const struct { const char *name; int (* fn)(int argc, char *argv[]); unsigned options;