summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/statistics_registry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/statistics_registry.h b/src/util/statistics_registry.h
index 8246bfdd2..186433c5a 100644
--- a/src/util/statistics_registry.h
+++ b/src/util/statistics_registry.h
@@ -762,7 +762,7 @@ inline bool operator>=(const timespec& a, const timespec& b) {
inline std::ostream& operator<<(std::ostream& os, const timespec& t) {
// assumes t.tv_nsec is in range
return os << t.tv_sec << "."
- << std::setfill('0') << std::setw(8) << std::right << t.tv_nsec;
+ << std::setfill('0') << std::setw(9) << std::right << t.tv_nsec;
}
namespace CVC4 {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback