Skip to content

Commit 9fbb524

Browse files
committed
fix time ordering in navnexus
1 parent 3baef9c commit 9fbb524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

navnexus.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ try
9696
}
9797
sort(nmms.begin(), nmms.end(), [](const auto& a, const auto& b)
9898
{
99-
return make_pair(a.localutcseconds(), b.localutcnanoseconds()) <
99+
return make_pair(a.localutcseconds(), a.localutcnanoseconds()) <
100100
make_pair(b.localutcseconds(), b.localutcnanoseconds());
101101
});
102102

0 commit comments

Comments
 (0)