Skip to content

Commit

Permalink
more clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
alanking committed Feb 13, 2024
1 parent c48cecd commit ca1d141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/src/rsDataObjTrim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ namespace
const auto expired = [&expiration_time](const irods::physical_object& _replica) {
// Any replica with a last-modified time that is EARLIER than the expiration time (that is, less than) is
// considered expired.
return std::cmp_less(std::stoul(_replica.modify_ts().c_str()), expiration_time);
return std::cmp_less(std::stoul(_replica.modify_ts()), expiration_time);
};

// If a specific replica number is specified, only trim that one!
Expand Down

0 comments on commit ca1d141

Please sign in to comment.