Modify isnan() operation

This commit is contained in:
Ward Fisher 2020-08-29 18:42:20 -06:00
parent aad64e715d
commit 80cf5e3d79

View File

@ -355,9 +355,9 @@ NCZ_stringconvert(nc_type typeid, size_t len, void* data0, NCjson** jdatap)
#else
if(isnan(d))
special = "NaN";
else if(isinf(d) < 0)
else if(isinf(d) && d < 0)
special = "-Infinity";
else if(isinf(d) > 0)
else if(isinf(d) && d > 0)
special = "Infinity";
else {}
#endif