summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-14 05:57:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-14 05:57:58 +0000
commit2c20dd1473606b598d405f501a9873355abcee75 (patch)
tree0c2fbe81e6ca9b8ab4de2f8336f76c7ee114fd00 /gc.c
parent914969a0400e4df63d959c45d972d3f58e1ac58c (diff)
* gc.c (getrusage_time): should return the value.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 736dd63024..2bfb27d355 100644
--- a/gc.c
+++ b/gc.c
@@ -140,6 +140,7 @@ getrusage_time(void)
t += (double)(DWORD)(q >> 16) * (1 << 16);
t += (DWORD)q & ~(~0 << 16);
#endif
+ return t;
#else
return 0.0;
#endif