diff options
author | "Robert P. J. Day" | 2006-07-01 13:08:46 +0000 |
---|---|---|
committer | "Robert P. J. Day" | 2006-07-01 13:08:46 +0000 |
commit | 68229837ff1e690190d51b74b281cfe999220e6d (patch) | |
tree | 7cbdeded060f86cefc4edd006c2538c2a2a4ea97 /coreutils/test.c | |
parent | f350160963c4412bb76f3e8cca669529fdde81d1 (diff) | |
download | busybox-68229837ff1e690190d51b74b281cfe999220e6d.zip busybox-68229837ff1e690190d51b74b281cfe999220e6d.tar.gz |
Remove all usage of the "register" storage class specifier.
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index ab37936..bbc8022 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -554,7 +554,7 @@ static void initialize_group_array(void) /* Return non-zero if GID is one that we have in our groups list. */ static int is_a_group_member(gid_t gid) { - register int i; + int i; /* Short-circuit if possible, maybe saving a call to getgroups(). */ if (gid == getgid() || gid == getegid()) |