Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type changes and explicit casts to fix warnings in 64-bit builds #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions ObjectiveWMM/WMM/GeomagnetismLibrary.c
Original file line number Diff line number Diff line change
Expand Up @@ -2126,8 +2126,8 @@ int MAG_readMagneticModel_SHDF(char *filename, MAGtype_MagneticModel *(*magnetic
char *line = (char *) malloc(MAXLINELENGTH);
char *ptrreset;
char paramvalue[MAXLINELENGTH];
int paramvaluelength = 0;
int paramkeylength = 0;
long paramvaluelength = 0;
long paramkeylength = 0;
int i = 0, j = 0;
int newrecord = 1;
int header_index = -1;
Expand Down Expand Up @@ -2715,7 +2715,7 @@ int MAG_GetUTMParameters(double Latitude,
*CentralMeridian = (6 * temp_zone - 183) * M_PI / 180.0;
else
*CentralMeridian = (6 * temp_zone + 177) * M_PI / 180.0;
*Zone = temp_zone;
*Zone = (int)temp_zone;
if(Latitude < 0) *Hemisphere = 'S';
else *Hemisphere = 'N';
}
Expand Down Expand Up @@ -3933,7 +3933,8 @@ OUPUT Pointer to data structure Geoid with the following elements updated
CALLS : none
*/
{
int ElevationsRead, SwabType, Index;
long ElevationsRead;
int SwabType, Index;
FILE *GeoidHeightFile;


Expand Down