From 74b0f111919543cf3f9693a451615811d7032882 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 16 May 2005 19:33:21 +0000 Subject: [PATCH] It would help if the headings were sorted properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22096 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/userloc.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/userloc.pl b/utils/userloc.pl index e9e4b9062ad..8f40d9b6da3 100755 --- a/utils/userloc.pl +++ b/utils/userloc.pl @@ -159,7 +159,7 @@ sub printStats if ($RowCount % 10 == 0) { print " Directory\n"; - foreach $user (keys %Stats) + foreach $user (sort keys %Stats) { print "",$user,"\n"; } -- 2.34.1