diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-03 09:02:52 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-03 09:02:52 +0900 |
| commit | 4d521ed745a02f1b79cf99cb2de2cb9e282d004c (patch) | |
| tree | c6523e30976570e6157b1215700c762b913a1768 /src | |
| parent | 98729dd69afde1fb6c2c20a726917e037c34b190 (diff) | |
| parent | 3988597afc6b1e0b69b3a08373faa614b22c3ff9 (diff) | |
| download | mruby-4d521ed745a02f1b79cf99cb2de2cb9e282d004c.tar.gz mruby-4d521ed745a02f1b79cf99cb2de2cb9e282d004c.zip | |
Merge pull request #2174 from suzukaze/fix-indent
Fix indent
Diffstat (limited to 'src')
| -rw-r--r-- | src/gc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -121,9 +121,9 @@ static double gc_total_time = 0; static double gettimeofday_time(void) { - struct timeval tv; - gettimeofday(&tv, NULL); - return tv.tv_sec + tv.tv_usec * 1e-6; + struct timeval tv; + gettimeofday(&tv, NULL); + return tv.tv_sec + tv.tv_usec * 1e-6; } #define GC_INVOKE_TIME_REPORT(with) do {\ |
