Applied patch from I.Q. to add sort -u as a feature.
[oweals/busybox.git] / coreutils / test.c
index ab9c23e4b629f718503afa073ab8b3ae169d09a6..79db8cbb62c65306c79d33b614fd6abd2fcea5e4 100644 (file)
@@ -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},