summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index ce7ceab7e..ca4bc3240 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -609,9 +609,8 @@ sub whatUsbport() {
# This routine based on an ioctl request gives very clean and correct
# manufacturer and model names, so that they are easily matched to the
# printer entries in the Foomatic database
- my $i;
my @res;
- foreach $i (0..15) {
+ foreach my $i (0..15) {
my $port = "/dev/usb/lp$i";
my $realport = devices::make($port);
next if !$realport;