From f91dc617c5966edeba9f5c643e8be49ed106ffcc Mon Sep 17 00:00:00 2001 From: Daniel Gall Date: Wed, 7 Feb 2018 01:57:26 -0500 Subject: [PATCH 3/3] du: fixed typo from last commit We want user subtotals to be prefaced by "Users" rather than "Groups". --- src/du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/du.c b/src/du.c index 53349c2..f0eafa9 100644 --- a/src/du.c +++ b/src/du.c @@ -458,7 +458,7 @@ print_size (const struct duinfo *pdui, const char *string) { uintmax_t i=0; struct passwd *u; - printf(" Groups"); + printf(" Users"); for (i=0; i<65535; i++){ if (pdui->user_size[i] > 0) { -- 2.10.2