diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-02-12 09:16:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-02-12 09:18:09 +0100 |
commit | 9a38118b12113579a2eb8c794f9dddd7db27e992 (patch) | |
tree | f810657e9d78a70034f019f256063048425dbb5a | |
parent | 0e286f768ed028ce91bb4730010363dac30acec6 (diff) |
call_sum has only one parameter
Change-Id: Ib8925506c3ea08f2166483b9e902484ef8dd60f6
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index ca39a964b7b1..0f62eaad714f 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -165,7 +165,7 @@ sub put_checksum_and_size_into_script sub call_sum { - my ($filename, $getuidlibrary) = @_; + my ($filename) = @_; my $systemcall = "/usr/bin/sum $filename |"; |