Skip to content

Commit

Permalink
🚧 kernel: fix stupid typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Jun 17, 2024
1 parent 8094ac9 commit f16e499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ bool Kernel::remove() const noexcept {
g_kernel_removal_list.push_back(m_name);

const auto& append_to_removal_list = [this](alpm_pkg_t* sync_pkg) {
if (sync_pkg != nullptr) {
if (sync_pkg == nullptr) {
return;
}

Expand Down

0 comments on commit f16e499

Please sign in to comment.