From fd4ca26dfc9f7b6783d568d319d61a7fefd21ee4 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 19 Oct 2007 00:32:51 +0200 Subject: mysys/my_getopt.c always process uint/ulong using ulonglong (unsigned) code dbug printout for adjusted option values strings/llstr.c ullstr() - the unsigned brother of llstr() include/m_string.h: ullstr() - the unsigned brother of llstr() mysql-test/t/variables.test: test adjusted for 32bit mysys/my_getopt.c: always process uint/ulong using ulonglong (unsigned) code dbug printout for adjusted option values strings/llstr.c: ullstr() - the unsigned brother of llstr() --- strings/llstr.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'strings/llstr.c') diff --git a/strings/llstr.c b/strings/llstr.c index 12aea63e014..678f8b05f39 100644 --- a/strings/llstr.c +++ b/strings/llstr.c @@ -32,3 +32,10 @@ char *llstr(longlong value,char *buff) longlong10_to_str(value,buff,-10); return buff; } + +char *ullstr(longlong value,char *buff) +{ + longlong10_to_str(value,buff,10); + return buff; +} + -- cgit v1.2.1