Although the elements of `test_aliases[]` are of type `const char *`, the elements themselves are not const-qualified. Make them `const`. Signed-off-by: Ian Abbott <abbotti@xxxxxxxxx> --- commands/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/test.c b/commands/test.c index d0f63c139..c4f493860 100644 --- a/commands/test.c +++ b/commands/test.c @@ -224,7 +224,7 @@ out: return expr; } -static const char *test_aliases[] = { "[", NULL}; +static const char * const test_aliases[] = { "[", NULL}; BAREBOX_CMD_HELP_START(test) BAREBOX_CMD_HELP_TEXT("Options:") -- 2.11.0 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox