summaryrefslogtreecommitdiff
path: root/bin/checklinks
diff options
context:
space:
mode:
Diffstat (limited to 'bin/checklinks')
-rwxr-xr-xbin/checklinks2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checklinks b/bin/checklinks
index 0b51e08..1342862 100755
--- a/bin/checklinks
+++ b/bin/checklinks
@@ -18,7 +18,7 @@ if (defined($ARGV[0]) and $ARGV[0] eq '-q') {
open(LINKS, '<.links') or die($!);
while(<LINKS>) {
chomp;
- ($type, $src, $dst) = split(/ +/);
+ ($type, $src, $dst) = split;
if ($type eq 'soft') {
check_symlink($src, $dst);
} elsif ($type eq 'hard') {