aboutsummaryrefslogtreecommitdiff
path: root/sbofind
diff options
context:
space:
mode:
authorJacob Pipkin <j@dawnrazor.net>2012-11-30 07:28:06 -0600
committerJacob Pipkin <j@dawnrazor.net>2012-11-30 07:28:06 -0600
commit18e1fa6ea838d56de91f611c4878ef4c43dace2c (patch)
tree5454203e52f9697c2035d00c9cdefff603bb445f /sbofind
parent409e298681539f4a5ac7b802377898461147259e (diff)
downloadsbotools2-18e1fa6ea838d56de91f611c4878ef4c43dace2c.tar.xz
save the vars
Diffstat (limited to 'sbofind')
-rwxr-xr-xsbofind4
1 files changed, 1 insertions, 3 deletions
diff --git a/sbofind b/sbofind
index ef01852..752c3fe 100755
--- a/sbofind
+++ b/sbofind
@@ -98,9 +98,7 @@ sub get_file_contents ($) {
# get build queue and return it as a single line.
sub show_build_queue ($) {
exists $_[0] or script_error 'show_build_queue requires an argument.';
- my $array_ref = [shift];
- my %warnings;
- my $queue = get_build_queue($array_ref, \%warnings);
+ my $queue = get_build_queue([shift], {});
return join(" ", @$queue);
}