Skip to content

Commit

Permalink
cosmetics: no trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
guillomovitch committed May 15, 2012
1 parent 79618f2 commit b222269
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/FusionInventory/Agent/Tools/Win32.pm
Expand Up @@ -18,7 +18,7 @@ use Win32::TieRegistry (
qw/KEY_READ/
);

use File::Temp ();
use File::Temp ();
use File::Temp qw/ :seekable /;
use Win32::Job;

Expand All @@ -42,7 +42,7 @@ our @EXPORT = qw(

sub is64bit {
return
any { $_->{AddressWidth} eq 64 }
any { $_->{AddressWidth} eq 64 }
getWmiObjects(
class => 'Win32_Processor', properties => [ qw/AddressWidth/ ]
);
Expand Down Expand Up @@ -142,7 +142,7 @@ sub _getRegistryKey {
## no critic (ProhibitBitwise)
my $rootKey = is64bit() ?
$Registry->Open($params{root}, { Access=> KEY_READ | KEY_WOW64_64 } ) :
$Registry->Open($params{root}, { Access=> KEY_READ } ) ;
$Registry->Open($params{root}, { Access=> KEY_READ } ) ;

if (!$rootKey) {
$params{logger}->error(
Expand Down Expand Up @@ -263,7 +263,7 @@ Returns a command in a Win32 Process
=item command the command to run
=item timeout a time in second, default is 3600*2
=item timeout a time in second, default is 3600*2
=item no_stderr ignore STDERR output, default is false
=back
Expand Down

0 comments on commit b222269

Please sign in to comment.