mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +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:
@ -4480,7 +4480,7 @@ that are reorganised.
|
||||
{
|
||||
if (!alt_part_info->use_default_partitions)
|
||||
{
|
||||
DBUG_PRINT("info", ("part_info= %x", tab_part_info));
|
||||
DBUG_PRINT("info", ("part_info: 0x%lx", (long) tab_part_info));
|
||||
tab_part_info->use_default_partitions= FALSE;
|
||||
}
|
||||
tab_part_info->use_default_no_partitions= FALSE;
|
||||
|
Reference in New Issue
Block a user