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