aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-21 17:58:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-21 17:58:43 +0000
commitfc5d15912cb4dafc585ef57b89531df58b0a9456 (patch)
tree15dedd8e8f7b4fe9d68a71f6f84ba576b4f13ad7
parent707669501f59208c00d447d5a5314aa6942341fb (diff)
downloadbusybox-w32-fc5d15912cb4dafc585ef57b89531df58b0a9456.tar.gz
busybox-w32-fc5d15912cb4dafc585ef57b89531df58b0a9456.tar.bz2
busybox-w32-fc5d15912cb4dafc585ef57b89531df58b0a9456.zip
test: correct confusing placement of "const"
-rw-r--r--coreutils/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/test.c b/coreutils/test.c
index 82d2664a8..3c57cf418 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -156,7 +156,7 @@ typedef int arith_t;
156/* Cannot eliminate these static data (do the G trick) 156/* Cannot eliminate these static data (do the G trick)
157 * because of test_main usage from other applets */ 157 * because of test_main usage from other applets */
158static char **t_wp; 158static char **t_wp;
159static struct t_op const *t_wp_op; 159static const struct t_op *t_wp_op;
160static gid_t *group_array; 160static gid_t *group_array;
161static int ngroups; 161static int ngroups;
162static jmp_buf leaving; 162static jmp_buf leaving;