prt-auf: fix the return type in uninstall()

This commit is contained in:
John McQuah 2023-06-10 09:22:34 -04:00
parent da3539c83a
commit b740564de5

View File

@ -502,7 +502,7 @@ sub uninstall {
if (($LOCKED{$t}) and ($opkg{test} eq "no")) { port_unlock($t); }
}
my @successes = grep { $removed{$_} == 1 } keys %removed;
return @successes;
return \@successes;
}
sub port_lock {