summaryrefslogtreecommitdiff
path: root/lib/profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/profile.rb')
-rw-r--r--lib/profile.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/profile.rb b/lib/profile.rb
index 6f772ee6d9..23840c4e19 100644
--- a/lib/profile.rb
+++ b/lib/profile.rb
@@ -41,7 +41,8 @@ module Profiler__
MAP["#toplevel"][1] = total
# f = open("./rmon.out", "w")
f = STDERR
- data = MAP.values.sort!{|a,b| b[2] <=> a[2]}
+ data = MAP.values
+ data.sort!{|a,b| b[2] <=> a[2]}
sum = 0
f.printf " %% cumulative self self total\n"
f.printf " time seconds seconds calls ms/call ms/call name\n"