mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Added missing argument to strxnmov() (Applies for windows debug mode)
This commit is contained in:
parent
e1fee022fa
commit
f816e51096
1 changed files with 2 additions and 1 deletions
|
@ -696,7 +696,8 @@ mysql_debug(const char *debug __attribute__((unused)))
|
|||
#else
|
||||
{
|
||||
char buff[80];
|
||||
strxnmov(buff,sizeof(buff),"libmysql: ", env);
|
||||
buff[sizeof(buff)-1]= 0;
|
||||
strxnmov(buff,sizeof(buff)-1,"libmysql: ", env, NullS);
|
||||
MessageBox((HWND) 0,"Debugging variable MYSQL_DEBUG used",buff,MB_OK);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue