summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-11-20 22:25:59 +0200
committermonty@donna.mysql.com <>2000-11-20 22:25:59 +0200
commitd43b4a2ae1a5b2fd729477ce5ea02537c227e5f2 (patch)
tree5390b25e6e61ec56f90e454a33b6e630e70b02a4 /strings
parentb355c2e99315e8a5863ad70002e8541015b24d2a (diff)
downloadmariadb-git-d43b4a2ae1a5b2fd729477ce5ea02537c227e5f2.tar.gz
Fixed performance bug in lock tables
Diffstat (limited to 'strings')
-rw-r--r--strings/llstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/llstr.c b/strings/llstr.c
index a8514d7e369..470645a4f65 100644
--- a/strings/llstr.c
+++ b/strings/llstr.c
@@ -31,6 +31,6 @@
char *llstr(longlong value,char *buff)
{
- longlong2str(value,buff,10);
+ longlong2str(value,buff,-10);
return buff;
}