diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:52:26 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:52:26 +0000 |
commit | af3191710e3f8f34945cc6dab845e0c4f6a98611 (patch) | |
tree | 6b18dc3660eadab95758042fb7e347e987232c2e | |
parent | 776df4bcb6a09530c835874ac8ef4aaf00451f5b (diff) |
(lookup_user): Declare return to be `int' to avoid type clash in use
as 4th parameter to parse_numlist.
-rw-r--r-- | utils/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -328,7 +328,7 @@ current_lid() } /* Returns the UID for the user called NAME. */ -static uid_t +static int lookup_user(char *name) { struct passwd *pw = getpwnam(name); |