summaryrefslogtreecommitdiff
path: root/innobase/include/trx0rseg.ic
diff options
context:
space:
mode:
Diffstat (limited to 'innobase/include/trx0rseg.ic')
-rw-r--r--innobase/include/trx0rseg.ic4
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/include/trx0rseg.ic b/innobase/include/trx0rseg.ic
index 423447d5566..6b242b66c09 100644
--- a/innobase/include/trx0rseg.ic
+++ b/innobase/include/trx0rseg.ic
@@ -63,7 +63,7 @@ trx_rsegf_get_nth_undo(
{
if (n >= TRX_RSEG_N_SLOTS) {
fprintf(stderr,
- "InnoDB: Error: trying to get slot %lu of rseg\n", n);
+ "InnoDB: Error: trying to get slot %lu of rseg\n", (unsigned long) n);
ut_a(0);
}
@@ -84,7 +84,7 @@ trx_rsegf_set_nth_undo(
{
if (n >= TRX_RSEG_N_SLOTS) {
fprintf(stderr,
- "InnoDB: Error: trying to set slot %lu of rseg\n", n);
+ "InnoDB: Error: trying to set slot %lu of rseg\n", (unsigned long) n);
ut_a(0);
}