Fix 'gb.Scientific' number format.

[INTERPRETER]
* BUG: Fix 'gb.Scientific' number format.
This commit is contained in:
gambas 2019-05-09 00:04:18 +02:00
parent eb2934e9fa
commit 19b83e535d

View file

@ -751,7 +751,7 @@ bool LOCAL_format_number(double number, int fmt_type, const char *fmt, int len_f
break;
case LF_SCIENTIFIC:
fmt = "0.################E+#";
fmt = "0.################E+0";
break;
case LF_CURRENCY: