utils/geometry.c: non-void function does not return a value in all control paths

Had to pick a value to return by default.  This is a probably should never happen ?

SonarCloud
utils/geometry.c:589 non-void function does not return a value in all control paths
https://sonarcloud.io/project/issues?open=AZJB16DGNGfDNup0Rg7u&id=dlmiles_magic
This commit is contained in:
Darryl L. Miles 2024-09-29 23:00:00 +01:00 committed by Tim Edwards
parent bfd818fbd3
commit cb31675174
1 changed files with 2 additions and 0 deletions

View File

@ -586,6 +586,8 @@ GeoTransOrient(t)
return ORIENT_FLIPPED_WEST;
}
}
return ORIENT_NORTH;
}