missed change for making number of exponent bits settable

This commit is contained in:
Jeff Wang 2019-05-01 01:49:16 -04:00
parent 60ed369c47
commit 96c762aeed

View File

@ -865,7 +865,7 @@ int8_t decn_to_str(char* buf, const dec80* x){
} }
//pad zeros right of decimal point if needed //pad zeros right of decimal point if needed
if (!use_sci && exponent < 0){ if (!use_sci && exponent < 0){
int8_t j; exp_t j;
buf[i] = '0'; buf[i] = '0';
i++; i++;
INSERT_DOT(); INSERT_DOT();