Browse Source

Fixed a shameful syntax error

Alois Mahdal 12 years ago
parent
commit
cf37d1d4be
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/htlogr.pm

+ 1
- 1
lib/htlogr.pm View File

@@ -61,7 +61,7 @@ sub data {
61 61
     my $DIV_FIELD =";";
62 62
     my $DIV_VALUE ="=";
63 63
 
64
-    carp("data must be a hash reference" unless ref $data == 'HASH');
64
+    carp("data must be a hash reference") unless ref $data == 'HASH';
65 65
 
66 66
     my @fields;
67 67
     foreach (keys %$data) {