aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsboremove4
1 files changed, 2 insertions, 2 deletions
diff --git a/sboremove b/sboremove
index 93e2797..dd3b28e 100755
--- a/sboremove
+++ b/sboremove
@@ -69,7 +69,7 @@ for my $sbo (@ARGV) {
my ($remove_queue, %required_by, %warnings, @confirmed);
sub get_requires ($) {
- my $location = get_sbo_location shift;
+ my $location = get_sbo_location (shift);
my $requires = get_from_info (LOCATION => $location, GET => 'REQUIRES');
return $requires;
}
@@ -153,7 +153,7 @@ unless ($non_int) {
chomp(my $viewrm = <STDIN>);
if ($viewrm =~ /^[Yy]/) {
print "\n";
- my $locrm = get_sbo_location $pkg;
+ my $locrm = get_sbo_location ($pkg);
$locrm .= '/README';
open(README, '<', $locrm) or die "could not open $locrm";
for my $line (<README>) {