Commit 4d521ed7 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2174 from suzukaze/fix-indent

Fix indent
parents 98729dd6 3988597a
...@@ -121,9 +121,9 @@ static double gc_total_time = 0; ...@@ -121,9 +121,9 @@ static double gc_total_time = 0;
static double static double
gettimeofday_time(void) gettimeofday_time(void)
{ {
struct timeval tv; struct timeval tv;
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
return tv.tv_sec + tv.tv_usec * 1e-6; return tv.tv_sec + tv.tv_usec * 1e-6;
} }
#define GC_INVOKE_TIME_REPORT(with) do {\ #define GC_INVOKE_TIME_REPORT(with) do {\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment