diff options
author | Matt Kraai <kraai@debian.org> | 2000-12-30 07:46:23 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-12-30 07:46:23 +0000 |
commit | e6e818309e9d415d23612040b3e8594a8feffe1b (patch) | |
tree | 2db782873b3bbcdf3001d8f38434302a5a7c92d2 /coreutils/test.c | |
parent | e9e182e2557c984d6cb7660e07e657c095051898 (diff) | |
download | busybox-w32-e6e818309e9d415d23612040b3e8594a8feffe1b.tar.gz busybox-w32-e6e818309e9d415d23612040b3e8594a8feffe1b.tar.bz2 busybox-w32-e6e818309e9d415d23612040b3e8594a8feffe1b.zip |
Improvements from Vladimir N. Oleynik.
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index d1a0b6025..ba6feb033 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -156,8 +156,8 @@ struct t_op { | |||
156 | {0, 0, 0} | 156 | {0, 0, 0} |
157 | }; | 157 | }; |
158 | 158 | ||
159 | char **t_wp; | 159 | static char **t_wp; |
160 | struct t_op const *t_wp_op; | 160 | static struct t_op const *t_wp_op; |
161 | static gid_t *group_array = NULL; | 161 | static gid_t *group_array = NULL; |
162 | static int ngroups; | 162 | static int ngroups; |
163 | 163 | ||