Commit 306e37e6 authored by unknown's avatar unknown

Fix alignment.

parent 15ef828b
...@@ -4281,8 +4281,9 @@ int Field_str::store(double nr) ...@@ -4281,8 +4281,9 @@ int Field_str::store(double nr)
uint length; uint length;
bool use_scientific_notation= TRUE; bool use_scientific_notation= TRUE;
use_scientific_notation= TRUE; use_scientific_notation= TRUE;
if (field_length < 32 && fabs(nr) < log_10[field_length]-1) if (field_length < 32 && fabs(nr) < log_10[field_length]-1)
use_scientific_notation= FALSE; use_scientific_notation= FALSE;
length= (uint) my_sprintf(buff, (buff, "%-.*g", length= (uint) my_sprintf(buff, (buff, "%-.*g",
(use_scientific_notation ? (use_scientific_notation ?
max(0, (int)field_length-5) : max(0, (int)field_length-5) :
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment