diff options
author | Eric Andersen | 2001-03-19 23:49:41 +0000 |
---|---|---|
committer | Eric Andersen | 2001-03-19 23:49:41 +0000 |
commit | 92d23245c93eb7db64818384ee6c5366a465e29e (patch) | |
tree | 1ccb6d69a226fdc1efb283cc1b0d2cc321f5b942 /test.c | |
parent | 40eaa9f0bb2c689552e39890592ed773d870c1fa (diff) | |
download | busybox-92d23245c93eb7db64818384ee6c5366a465e29e.zip busybox-92d23245c93eb7db64818384ee6c5366a465e29e.tar.gz |
Another cleanup patch from Jeff Garzik <jgarzik@mandrakesoft.com>
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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}, |