Skip to content

Commit 82eac25

Browse files
authored
Fixing missing () in File.pm
1 parent 1e6def6 commit 82eac25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Geo/GDAL/FFI/VSI/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sub Write {
4545
my ($self, $buf) = @_;
4646
my $len = do {use bytes; length($buf)};
4747
my $ffi = FFI::Platypus->new();
48-
my $address = $ffi->cast 'string' => 'opaque', $buf;
48+
my $address = $ffi->cast('string' => 'opaque', $buf);
4949
return Geo::GDAL::FFI::VSIFWriteL($address, 1, $len, $self->{handle});
5050
}
5151

0 commit comments

Comments
 (0)