mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
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()
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user