Skip to content

Commit

Permalink
consistant variables naming
Browse files Browse the repository at this point in the history
  • Loading branch information
guillomovitch committed May 15, 2012
1 parent 2ca66e1 commit 5200571
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -120,9 +120,9 @@ sub _getScreensFromUnix {
if (-d '/sys') {
my $wanted = sub {
return unless $File::Find::name =~ m{/edid$};
open my $t, '<', $File::Find::name;
my $edid = <$t>;
close $t;
open my $handle, '<', $File::Find::name;
my $edid = <$handle>;
close $handle;

push @screens, { edid => $edid } if $edid;
};
Expand Down

0 comments on commit 5200571

Please sign in to comment.