diff options
Diffstat (limited to 'usr.bin/top/utils.c')
-rw-r--r-- | usr.bin/top/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/top/utils.c b/usr.bin/top/utils.c index 9e7f9cce41b..29fb3d84abe 100644 --- a/usr.bin/top/utils.c +++ b/usr.bin/top/utils.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utils.c,v 1.27 2018/09/13 15:23:32 millert Exp $ */ +/* $OpenBSD: utils.c,v 1.28 2018/09/22 16:50:35 millert Exp $ */ /* * Top users/processes display for Unix @@ -89,7 +89,7 @@ itoa(int val) * justified in a 6 character field to match uname_field in top.c. */ const char * -format_uid(uid_t uid) +format_uid(uid_t uid, int nouser) { static char buffer[16]; /* result is built here */ |