Skip to content

Commit

Permalink
wrap long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
guillomovitch committed Jul 17, 2012
1 parent 2605e64 commit 0c2a64c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fusioninventory-injector
Expand Up @@ -67,7 +67,8 @@ sub loaddirectory {

die "can't read directory $directory" unless -r $directory;

opendir (my $dh, $directory) or die "can't open directory $directory: $ERRNO";
opendir (my $dh, $directory)
or die "can't open directory $directory: $ERRNO";
foreach ( readdir($dh) ) {
loadfile("$directory/$_") if (/\.ocs$/);
}
Expand Down

0 comments on commit 0c2a64c

Please sign in to comment.