summaryrefslogtreecommitdiff
path: root/strings/llstr.c
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2000-11-20 22:25:59 +0200
committerunknown <monty@donna.mysql.com>2000-11-20 22:25:59 +0200
commit166df4ee474f42487f0cdd8db4fe298f3528a1c0 (patch)
tree5390b25e6e61ec56f90e454a33b6e630e70b02a4 /strings/llstr.c
parentc21988993eaa0fe8d7c85e75559fbaf0d613222c (diff)
downloadmariadb-git-166df4ee474f42487f0cdd8db4fe298f3528a1c0.tar.gz
Fixed performance bug in lock tables
Docs/manual.texi: Updated changelog mysys/thr_lock.c: Fixed bad performance bug when using SELECT, INSERT and UPDATE strings/llstr.c: change llstr() to output signed strings
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 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;
}