diff options
Diffstat (limited to 'lib/h2ph.t')
-rw-r--r-- | lib/h2ph.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/h2ph.t b/lib/h2ph.t index bdcc389073..377cc63131 100644 --- a/lib/h2ph.t +++ b/lib/h2ph.t @@ -23,7 +23,7 @@ plan(6); sub txt_compare { local $/; my ($A, $B); - for (($A,$B) = @_) { open(_,"<$_") ? $_ = <_> : die "$_ : $!"; close _ } + for (($A,$B) = @_) { open(_,"<",$_) ? $_ = <_> : die "$_ : $!"; close _ } $A cmp $B; } |