Skip to content

Commit

Permalink
geoheif: fix debug formatting specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh committed Nov 23, 2024
1 parent ecbecae commit a5e07a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcore/geoheif.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void GeoHEIF::extractSRS(const uint8_t *payload, size_t length) const
// TODO: more sophisticated length checks
if (length < 12)
{
CPLDebug("GeoHEIF", "Infeasible length CRS payload %ld", length);
CPLDebug("GeoHEIF", "Infeasible length CRS payload %zu", length);
return;
}
std::string crsEncoding(payload + 4, payload + 8);
Expand Down

0 comments on commit a5e07a7

Please sign in to comment.