Commit 7f11fad8 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-32968: After-merge fix

This fixes up merge commit 9d20853c
parent b3ca7fa0
......@@ -502,9 +502,9 @@ dberr_t Datafile::validate_first_page()
return DB_SUCCESS;
}
sql_print_error("InnoDB: %s in datafile: %s, Space ID: %zu, "
"Flags: %zu", error_txt, m_filepath,
m_space_id, m_flags);
sql_print_error("InnoDB: %s in datafile: %s, Space ID: "
UINT32PF ", " "Flags: " UINT32PF,
error_txt, m_filepath, m_space_id, m_flags);
m_is_valid = false;
return DB_CORRUPTION;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment