Commit 79ff1944 authored by Dietmar Maurer's avatar Dietmar Maurer

avoid warning about undefined value

parent 12fb161a
......@@ -591,7 +591,7 @@ sub parse_res_bar_limit {
if ($text =~ m/^(\d+)([TGMKP])?$/i) {
my $val = $1;
my $mult = lc($2);
my $mult = $2 ? lc($2) : '';
if ($mult eq 'k') {
$val = $val * 1024;
} elsif ($mult eq 'm') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment