Skip to content

Commit

Permalink
Fixed uninitialized value warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattaereal committed Aug 17, 2016
1 parent 8bb6608 commit 1f40c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isrcore/Shell.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ sub cmdloop {
$line = $o->readline( $o->prompt_str );
}
else {
$line = $o->readline();
$line = $o->readline('');
}
$line = "empty" unless $line;
if ( $line eq "empty" ) {
Expand Down

0 comments on commit 1f40c8f

Please sign in to comment.