summaryrefslogtreecommitdiff
path: root/innobase/pars/pars0opt.c
diff options
context:
space:
mode:
authormonty@mysql.com <>2003-11-23 14:36:41 +0200
committermonty@mysql.com <>2003-11-23 14:36:41 +0200
commit7c725b2486de1f48f4e4e16a87b4b3cb542ab19b (patch)
treedf2c427c1d086dc0727fa8656815cece6df4aeb2 /innobase/pars/pars0opt.c
parentc2e44ba772b40d8d2216c36f1970e4cfc037e382 (diff)
downloadmariadb-git-7c725b2486de1f48f4e4e16a87b4b3cb542ab19b.tar.gz
Fixed compiler warnings from Intel compiler in Win64
Added option --max-record-length=# to myisamchk Don't try repair twice if doing myisamchk --repair --force Shared memory handler didn't clean up things on errors or shutdown
Diffstat (limited to 'innobase/pars/pars0opt.c')
-rw-r--r--innobase/pars/pars0opt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/innobase/pars/pars0opt.c b/innobase/pars/pars0opt.c
index 4faf83b47a3..9b0495a01cd 100644
--- a/innobase/pars/pars0opt.c
+++ b/innobase/pars/pars0opt.c
@@ -1235,7 +1235,8 @@ opt_print_query_plan(
printf(
"Table %s index %s; exact m. %lu, match %lu, end conds %lu\n",
plan->table->name, plan->index->name,
- plan->n_exact_match, n_fields,
- UT_LIST_GET_LEN(plan->end_conds));
+ (unsigned long) plan->n_exact_match,
+ (unsigned long) n_fields,
+ (unsigned long) UT_LIST_GET_LEN(plan->end_conds));
}
}