Skip to content

Commit

Permalink
Merge pull request #56 from fpl/master
Browse files Browse the repository at this point in the history
Fixed typo in Geometry.pm (closes: #54)
  • Loading branch information
shawnlaffan authored Oct 27, 2023
2 parents b3c7b76 + 86e080d commit 0a20a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Geometry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ sub GetGeometry {
sub AddGeometry {
my ($self, $g) = @_;
confess "Can't modify an immutable object." if $Geo::GDAL::FFI::immutable{$$self};
my $e = Geo::GDAL::FFI::OGR_G_OGR_G_AddGeometry($$self, $$g);
my $e = Geo::GDAL::FFI::OGR_G_AddGeometry($$self, $$g);
return unless $e;
confess(Geo::GDAL::FFI::error_msg());
}
Expand Down

0 comments on commit 0a20a58

Please sign in to comment.