mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Changed my_thread_id to int64 to fix compilation problem with
my_atomic_add32_explicit on windows Fixed that server_audit.c also works if one compiles with safemalloc Fixed compiler warnings
This commit is contained in:
@ -1139,8 +1139,8 @@ void end_connection(THD *thd)
|
||||
{
|
||||
wsrep_status_t rcode= wsrep->free_connection(wsrep, thd->thread_id);
|
||||
if (rcode) {
|
||||
WSREP_WARN("wsrep failed to free connection context: %lu, code: %d",
|
||||
thd->thread_id, rcode);
|
||||
WSREP_WARN("wsrep failed to free connection context: %lld code: %d",
|
||||
(longlong) thd->thread_id, rcode);
|
||||
}
|
||||
}
|
||||
thd->wsrep_client_thread= 0;
|
||||
|
Reference in New Issue
Block a user