X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=coreutils%2Ftest.c;h=79db8cbb62c65306c79d33b614fd6abd2fcea5e4;hb=fccaa3629b89bcfcd2d9b4126255cd31e0f5e174;hp=ab9c23e4b629f718503afa073ab8b3ae169d09a6;hpb=cbe31dace5fb24304694d399b9eb267fbe752516;p=oweals%2Fbusybox.git diff --git a/coreutils/test.c b/coreutils/test.c index ab9c23e4b..79db8cbb6 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -110,10 +110,10 @@ enum token_types { PAREN }; -struct t_op { +static const struct t_op { const char *op_text; short op_num, op_type; -} const ops [] = { +} ops [] = { {"-r", FILRD, UNOP}, {"-w", FILWR, UNOP}, {"-x", FILEX, UNOP},