diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/shell.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in index 9bad1232e..5bda7c9cd 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -1238,7 +1238,7 @@ static void shellDtostr( ){ double r = sqlite3_value_double(apVal[0]); char z[200]; - sprintf(z, "%#+.70e", r); + sprintf(z, "%#+.26e", r); sqlite3_result_text(pCtx, z, -1, SQLITE_TRANSIENT); } |