test: correct confusing placement of "const"
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 21 Sep 2007 17:58:43 +0000 (17:58 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 21 Sep 2007 17:58:43 +0000 (17:58 -0000)
coreutils/test.c

index 82d2664a8471324fe1389102586d88abbadc23c9..3c57cf418613109033e9be3f3cafd4e99ed87531 100644 (file)
@@ -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;