Skip to content

Commit

Permalink
cleanup: clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
umegane committed Nov 25, 2024
1 parent a760fad commit 003f01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/limestone/datastore_format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void check_and_migrate_logdir_format(const boost::filesystem::path& logdir) {
int acquire_manifest_lock(const boost::filesystem::path& logdir) {
boost::filesystem::path manifest_path = logdir / std::string(manifest_file_name);

int fd = ::open(manifest_path.string().c_str(), O_RDWR); // NOLINT(cppcoreguidelines-pro-type-vararg)
int fd = ::open(manifest_path.string().c_str(), O_RDWR); // NOLINT(hicpp-vararg, cppcoreguidelines-pro-type-vararg)
if (fd == -1) {
return -1;
}
Expand Down

0 comments on commit 003f01a

Please sign in to comment.