mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed a LOT of compiler warnings
Added missing DBUG_RETURN statements (in mysqldump.c) Added missing enums Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
This commit is contained in:
@ -564,8 +564,8 @@ err:
|
||||
mysql_free_result(res);
|
||||
if (error)
|
||||
{
|
||||
sql_print_error("While trying to obtain the list of slaves from the master \
|
||||
'%s:%d', user '%s' got the following error: '%s'",
|
||||
sql_print_error("While trying to obtain the list of slaves from the master "
|
||||
"'%s:%d', user '%s' got the following error: '%s'",
|
||||
mi->host, mi->port, mi->user, error);
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user