diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-13 18:27:08 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-13 18:27:08 -0800 |
commit | 5d2203a948944d980d580ceab7c9c373fd9d657d (patch) | |
tree | d72a2c0c58d30f459607a70db9b2ba78f1d24e98 /src | |
parent | 3ae786fc68724beef632ad04441bfb2568d341ca (diff) |
bench.h - adjusted timing width.
Diffstat (limited to 'src')
-rw-r--r-- | src/bench.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench.h b/src/bench.h index fa4ae10..9f7f5fc 100644 --- a/src/bench.h +++ b/src/bench.h @@ -14,7 +14,7 @@ float _cmark_save_time; #define end_timer(M) \ _cmark_end_time = (float)clock()/CLOCKS_PER_SEC; \ - fprintf(stderr, "[TIME] (%s:%d) %8.f ns " M "\n", __FILE__, \ + fprintf(stderr, "[TIME] (%s:%d) %4.f ns " M "\n", __FILE__, \ __LINE__, (_cmark_end_time - _cmark_start_time) * 1000000); \ _cmark_start_time = _cmark_save_time; |