mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Added missing argument to strxnmov() (Applies for windows debug mode)
libmysql/libmysql.c: Added missing argument to strxnmov()
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user