commit | fc5d15912cb4dafc585ef57b89531df58b0a9456 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Fri Sep 21 17:58:43 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Fri Sep 21 17:58:43 2007 +0000 |
tree | 15dedd8e8f7b4fe9d68a71f6f84ba576b4f13ad7 | |
parent | 707669501f59208c00d447d5a5314aa6942341fb [diff] [blame] |
test: correct confusing placement of "const"
diff --git a/coreutils/test.c b/coreutils/test.c index 82d2664..3c57cf4 100644 --- a/coreutils/test.c +++ b/coreutils/test.c
@@ -156,7 +156,7 @@ /* Cannot eliminate these static data (do the G trick) * because of test_main usage from other applets */ static char **t_wp; -static struct t_op const *t_wp_op; +static const struct t_op *t_wp_op; static gid_t *group_array; static int ngroups; static jmp_buf leaving;