mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-13844 : Fix Windows warnings. Fix DBUG_PRINT.
- Fix win64 pointer truncation warnings (usually coming from misusing 0x%lx and long cast in DBUG) - Also fix printf-format warnings Make the above mentioned warnings fatal. - fix pthread_join on Windows to set return value.
This commit is contained in:
@ -585,7 +585,7 @@ static bool mysql_admin_table(THD* thd, TABLE_LIST* tables,
|
||||
}
|
||||
}
|
||||
#endif
|
||||
DBUG_PRINT("admin", ("table: 0x%lx", (long) table->table));
|
||||
DBUG_PRINT("admin", ("table: %p", table->table));
|
||||
|
||||
if (prepare_func)
|
||||
{
|
||||
|
Reference in New Issue
Block a user