diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-17 11:17:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-17 11:17:51 +0000 |
commit | 063027ee2ff8df152a3d3a758916c0457fc18a89 (patch) | |
tree | 4b8cd399c8c15fe7242cdbcdf43135609f8b60c0 /perl-install/commands.pm | |
parent | 127a2a70946027f2f5c8855f9450713407213441 (diff) | |
download | drakx-063027ee2ff8df152a3d3a758916c0457fc18a89.tar drakx-063027ee2ff8df152a3d3a758916c0457fc18a89.tar.gz drakx-063027ee2ff8df152a3d3a758916c0457fc18a89.tar.bz2 drakx-063027ee2ff8df152a3d3a758916c0457fc18a89.tar.xz drakx-063027ee2ff8df152a3d3a758916c0457fc18a89.zip |
remove "$_ =~ " (as detected by new perl_checker)
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index 36b0297e5..1c19a87db 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -346,7 +346,7 @@ sub hexdump { my $i = 0; $/ = \16; @ARGV = @_; while (<>) { printf "%08lX ", $i; $i += 16; print join(" ", (map { sprintf "%02X", $_ } unpack("C*", $_)), - ($_ =~ s/[^$printable_chars]/./og, $_)[1]), "\n"; + (s/[^$printable_chars]/./og, $_)[1]), "\n"; } } |