summaryrefslogtreecommitdiff
path: root/src/id.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
commit74e3e13b3a19afc2f8573afbad0002060b7e3d4d (patch)
treec793d9d544dc802791ab37d884eae6f98a14d7db /src/id.c
parentc747ee56a77e58a19327a48e55d005fbef269d0f (diff)
downloadcoreutils-74e3e13b3a19afc2f8573afbad0002060b7e3d4d.tar.xz
Remove register keyword.
Diffstat (limited to 'src/id.c')
-rw-r--r--src/id.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/id.c b/src/id.c
index b86667e7c..1fe6a807c 100644
--- a/src/id.c
+++ b/src/id.c
@@ -1,5 +1,5 @@
/* id -- print real and effective UIDs and GIDs
- Copyright (C) 1989-2004 Free Software Foundation, Inc.
+ Copyright (C) 1989-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -311,7 +311,7 @@ print_group_list (const char *username)
{
int n_groups;
GETGROUPS_T *groups;
- register int i;
+ int i;
if (! xgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1),
&n_groups, &groups))
@@ -369,7 +369,7 @@ print_full_info (const char *username)
{
int n_groups;
GETGROUPS_T *groups;
- register int i;
+ int i;
if (! xgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1),
&n_groups, &groups))