From fc5d15912cb4dafc585ef57b89531df58b0a9456 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 21 Sep 2007 17:58:43 +0000 Subject: [PATCH] test: correct confusing placement of "const" --- coreutils/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; /* 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;