[arch-commits] Commit in ceph/trunk (boost-1.67.patch)
Evangelos Foutras
foutrelis at archlinux.org
Sat Jun 2 23:04:59 UTC 2018
Date: Saturday, June 2, 2018 @ 23:04:58
Author: foutrelis
Revision: 338490
Remove one too many parentheses in previous patch
Modified:
ceph/trunk/boost-1.67.patch
------------------+
boost-1.67.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Modified: boost-1.67.patch
===================================================================
--- boost-1.67.patch 2018-06-02 22:58:26 UTC (rev 338489)
+++ boost-1.67.patch 2018-06-02 23:04:58 UTC (rev 338490)
@@ -6,7 +6,7 @@
// Apparently the nanoseconds constructor is optional:
// http://www.boost.org/doc/libs/1_46_0/doc/html/date_time/details.html#compile_options
- boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds(dep.time_delta * m_latency_multiplier / 1000));
-+ boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds((static_cast<long long>(dep.time_delta * m_latency_multiplier / 1000)));
++ boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds(static_cast<long long>(dep.time_delta * m_latency_multiplier / 1000)));
if (sub_release_time > release_time) {
release_time = sub_release_time;
}
More information about the arch-commits
mailing list