Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Oct 22, 2024
1 parent a6dbf53 commit 890fd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion far/platform.security.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ namespace os::security

for (const auto& i: Privileges)
{
if (std::ranges::find(Changed, i.Luid, &LUID_AND_ATTRIBUTES::Luid) == Changed.cend())
if (std::ranges::find(Changed, i.Luid, &LUID_AND_ATTRIBUTES::Luid) == Changed.end())
{
LOGWARNING(L"{} not enabled"sv, Names[NameIndices[&i - Privileges.data()]]);
}
Expand Down

0 comments on commit 890fd14

Please sign in to comment.