diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-08-29 00:00:39 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-08-29 00:00:39 +0300 |
commit | 4ba97b671533399e960f9230013f4678cc45b1d2 (patch) | |
tree | af3c4416157d9fdcb3025d0c10ff56bb4fb129f1 /mod/mod-package-version-details.cxx | |
parent | 63723c0313acf3fb1539fb9a301250bbcc263ecc (diff) |
Use system_clock instead of timestamp::clock
Diffstat (limited to 'mod/mod-package-version-details.cxx')
-rw-r--r-- | mod/mod-package-version-details.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-package-version-details.cxx b/mod/mod-package-version-details.cxx index 6007a80..d0d5978 100644 --- a/mod/mod-package-version-details.cxx +++ b/mod/mod-package-version-details.cxx @@ -348,7 +348,7 @@ handle (request& rq, response& rs) s << H3 << "Builds" << ~H3 << DIV(ID="builds"); - timestamp now (timestamp::clock::now ()); + timestamp now (system_clock::now ()); transaction t (build_db_->begin ()); // Print built package configurations. |