1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-12 08:01:43 +03:00

branches/zip: Remove spaces and fix an uninitialized variable compiler warning.

This commit is contained in:
sunny
2008-04-11 09:58:17 +00:00
parent 21fd4e5778
commit 11cd9746d3

View File

@@ -245,12 +245,12 @@ bool
innodb_file_format_update( innodb_file_format_update(
/*======================*/ /*======================*/
/* out: should never /* out: should never
fail since it is fail since it is
already validated */ already validated */
THD* thd, /* in: thread handle */ THD* thd, /* in: thread handle */
struct st_mysql_sys_var* var, /* in: pointer to struct st_mysql_sys_var* var, /* in: pointer to
system variable */ system variable */
void* var_ptr, /* out: where the void* var_ptr, /* out: where the
formal string goes */ formal string goes */
void* save); /* in: immediate result void* save); /* in: immediate result
from check function */ from check function */
@@ -1820,6 +1820,10 @@ innobase_init(
MYF(MY_ALLOW_ZERO_PTR)); MYF(MY_ALLOW_ZERO_PTR));
goto error; goto error;
} }
} else {
/* Set it to the default file format id. Though this
should never happen. */
format_id = 0;
} }
srv_file_format = format_id; srv_file_format = format_id;
@@ -8818,12 +8822,12 @@ bool
innodb_file_format_update( innodb_file_format_update(
/*======================*/ /*======================*/
/* out: should never /* out: should never
fail since it is fail since it is
already validated */ already validated */
THD* thd, /* in: thread handle */ THD* thd, /* in: thread handle */
struct st_mysql_sys_var* var, /* in: pointer to struct st_mysql_sys_var* var, /* in: pointer to
system variable */ system variable */
void* var_ptr, /* out: where the void* var_ptr, /* out: where the
formal string goes */ formal string goes */
void* save) /* in: immediate result void* save) /* in: immediate result
from check function */ from check function */
@@ -8893,7 +8897,7 @@ static MYSQL_SYSVAR_BOOL(file_per_table, srv_file_per_table,
static MYSQL_SYSVAR_STR(file_format, innobase_file_format_name, static MYSQL_SYSVAR_STR(file_format, innobase_file_format_name,
PLUGIN_VAR_RQCMDARG, PLUGIN_VAR_RQCMDARG,
"File format to use for new tables in .ibd files.", "File format to use for new tables in .ibd files.",
(mysql_var_check_func) &innodb_file_format_check, (mysql_var_check_func) &innodb_file_format_check,
(mysql_var_update_func) &innodb_file_format_update, "Antelope"); (mysql_var_update_func) &innodb_file_format_update, "Antelope");
static MYSQL_SYSVAR_ULONG(flush_log_at_trx_commit, srv_flush_log_at_trx_commit, static MYSQL_SYSVAR_ULONG(flush_log_at_trx_commit, srv_flush_log_at_trx_commit,