aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-04-21 19:01:25 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-04-21 19:01:25 +0300
commit3e932ae8e79d627b940613e9902b1f60c6c0a8d7 (patch)
tree303751005db8347f3967022759c6a2b9f499aee1
parent1431812d9d3d7f64a4e159c915418a3d3dc3a0b6 (diff)
Fix bug in timestamp_nonexistent initialization
-rw-r--r--butl/timestamp2
1 files changed, 1 insertions, 1 deletions
diff --git a/butl/timestamp b/butl/timestamp
index 90bca08..02f8a92 100644
--- a/butl/timestamp
+++ b/butl/timestamp
@@ -39,7 +39,7 @@ namespace butl
// Generally-useful special values.
//
const timestamp timestamp_unknown = timestamp (duration (-1));
- const timestamp timestamp_nonexistent = timestamp (duration (10));
+ const timestamp timestamp_nonexistent = timestamp (duration (0));
// Print human-readable representation of the timestamp.
//