summaryrefslogtreecommitdiff
path: root/strings/llstr.c
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-10-18 14:06:46 +0200
committerunknown <serg@serg.mylan>2004-10-18 14:06:46 +0200
commitdecc71e636411341fa008c736c78ed10093a424e (patch)
tree93811826b5ed8783a0d85a3f713168bf5d766ed5 /strings/llstr.c
parent65ed693681b17414fc001099ee734f36de847f13 (diff)
downloadmariadb-git-decc71e636411341fa008c736c78ed10093a424e.tar.gz
arbitrary precision decimal numbers
strings/llstr.c: small optimization BitKeeper/etc/ignore: Added strings/test_decimal to the ignore list
Diffstat (limited to 'strings/llstr.c')
-rw-r--r--strings/llstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/llstr.c b/strings/llstr.c
index 966b347ac7e..ac034cbe2e2 100644
--- a/strings/llstr.c
+++ b/strings/llstr.c
@@ -30,6 +30,6 @@
char *llstr(longlong value,char *buff)
{
- longlong2str(value,buff,-10);
+ longlong10_to_str(value,buff,-10);
return buff;
}