diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-05 08:15:13 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-05 08:15:13 +0000 |
commit | 6559100021a271b0ec1948ff69a0b63861b399d5 (patch) | |
tree | 3838a5ba58e985f3011851ffd47aebcd452c5091 /coreutils/id.c | |
parent | 391ffa19d1e0813c51d51b29117d119b1dc57c49 (diff) |
- fix typo in print_user() (tito)
Diffstat (limited to 'coreutils/id.c')
-rw-r--r-- | coreutils/id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/id.c b/coreutils/id.c index 001595f67..3a12011fb 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -60,7 +60,7 @@ static int print_group(gid_t id, const char *prefix) return print_common(id, bb_getgrgid, prefix); } -static int print_user(gid_t id, const char *prefix) +static int print_user(uid_t id, const char *prefix) { return print_common(id, bb_getpwuid, prefix); } |