hyprpm: add missing return (#10299)

Add a missing return statement after handling the first superuser binary in the `dropSudo` function

Fixes: 1c530cb

Co-authored-by: Zebra2711 <zebra2711@users.noreply.github.com>
This commit is contained in:
Zebra2711
2025-05-06 19:53:28 +07:00
committed by GitHub
parent 1ce614dfc0
commit 708a7c24ef

View File

@@ -118,5 +118,6 @@ void NSys::dropSudo() {
// note the superuser binary that is being dropped
std::println("{}", infoString("Don't know how to drop timestamp for '{}', ignoring.", BIN));
}
return;
}
}