svn commit: trunk/busybox/coreutils

vda at busybox.net vda at busybox.net
Fri Sep 21 10:58:45 PDT 2007


Author: vda
Date: 2007-09-21 10:58:43 -0700 (Fri, 21 Sep 2007)
New Revision: 19930

Log:
test: correct confusing placement of "const"



Modified:
   trunk/busybox/coreutils/test.c


Changeset:
Modified: trunk/busybox/coreutils/test.c
===================================================================
--- trunk/busybox/coreutils/test.c	2007-09-21 17:42:40 UTC (rev 19929)
+++ trunk/busybox/coreutils/test.c	2007-09-21 17:58:43 UTC (rev 19930)
@@ -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;



More information about the busybox-cvs mailing list