diff options
Diffstat (limited to 'strings')
-rw-r--r-- | strings/llstr.c | 2 |
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; } |