diff options
author | monty@hundin.mysql.fi <> | 2001-08-23 00:55:48 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-08-23 00:55:48 +0300 |
commit | e127a952a6a4b63dbe8df7cc59492a4a69041a23 (patch) | |
tree | f6e213bc452d9b3c37cd161c3099c3e079f9c9d4 /myisam/myisamlog.c | |
parent | b4705431d6fe20768a57c2f6ffbc8aa048d4ffa2 (diff) | |
download | mariadb-git-e127a952a6a4b63dbe8df7cc59492a4a69041a23.tar.gz |
Portability fixes
Diffstat (limited to 'myisam/myisamlog.c')
-rw-r--r-- | myisam/myisamlog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/myisam/myisamlog.c b/myisam/myisamlog.c index a6094cfd489..ddfafb91430 100644 --- a/myisam/myisamlog.c +++ b/myisam/myisamlog.c @@ -488,8 +488,7 @@ static int examine_log(my_string file_name, char **table_names) command_name[command], (int) extra_command,result); if (update && curr_file_info && !curr_file_info->closed) { - if (mi_extra(curr_file_info->isam, - (int) extra_command) != (int) result) + if (mi_extra(curr_file_info->isam, extra_command) != (int) result) { fflush(stdout); VOID(fprintf(stderr, |