Skip to content

Commit a0748df

Browse files
committed
Microsoft(R) compiler emits an (accurate) nuisance warning : size_t and int are _not_ the same types
1 parent f00c273 commit a0748df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sat_id.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ static void remove_redundant_desig( char *name, const char *desig)
955955

956956
static char *gzgets_trimmed( gzFile ifile, char *buff, const size_t buff_len)
957957
{
958-
char *rval = gzgets( ifile, buff, buff_len);
958+
char *rval = gzgets( ifile, buff, (int)buff_len);
959959

960960
if( rval)
961961
{

0 commit comments

Comments
 (0)