mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Fix typo
This commit is contained in:
parent
e9a277164b
commit
4d7c91d8b2
1 changed files with 1 additions and 1 deletions
|
@ -2076,7 +2076,7 @@ String *Field_double::val_str(String *val_buffer,
|
|||
*to++= *pos++;
|
||||
#else
|
||||
#ifdef HAVE_SNPRINTF
|
||||
buff[to_length-1]=0; // Safety
|
||||
to[to_length-1]=0; // Safety
|
||||
snprintf(to,to_length-1,"%.*f",dec,nr);
|
||||
#else
|
||||
sprintf(to,"%.*f",dec,nr);
|
||||
|
|
Loading…
Reference in a new issue