summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-29 03:44:37 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-29 03:44:37 +0100
commit2239ab96e7fdb9ba2d188e2237c2d5a78a2063a7 (patch)
treeac140eec40c3c1de8c648163f28b77db9865fb52 /Userland
parenteed6031064262e5b2113c3ab43302818e3e454f4 (diff)
downloadserenity-2239ab96e7fdb9ba2d188e2237c2d5a78a2063a7.zip
Tweak /bin/id output slightly.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/id.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/id.cpp b/Userland/id.cpp
index 4a399c7197..465d6de27b 100644
--- a/Userland/id.cpp
+++ b/Userland/id.cpp
@@ -26,7 +26,7 @@ int main(int argc, char** argv)
perror("\ngetgroups");
return 1;
}
- printf(",");
+ printf(", groups=");
for (int g = 0; g < extra_gid_count; ++g) {
auto* gr = getgrgid(extra_gids[g]);
if (gr)