fixed output display of small <1e-7 values 5/91

This commit is contained in:
Janet B. Anderson
1991-05-03 11:08:14 +00:00
parent 2d7687aaac
commit 1d8955f97e

View File

@@ -488,7 +488,7 @@ int precision;
flt_value = -flt_value;
}
if (flt_value >= 10000000 ){
if (flt_value >= 10000000 || flt_value < 1e-7 ){
gcvt(flt_value,20,pstr_value);
return;
}