summaryrefslogtreecommitdiff
path: root/storage/innobase
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2017-06-06 11:50:42 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2017-06-06 12:04:29 +0300
commit6e0e5eefbc86a79f1dce756c4f3bfb5d91de95f1 (patch)
tree20528020d672845d319f2912696ea7b58e6c1bdf /storage/innobase
parent22fa9f22aa5b5cc91d5fb2038d1368e5f05bf2e8 (diff)
downloadmariadb-git-6e0e5eefbc86a79f1dce756c4f3bfb5d91de95f1.tar.gz
Fix some printf format type mismatch
Diffstat (limited to 'storage/innobase')
-rw-r--r--storage/innobase/buf/buf0dump.cc6
-rw-r--r--storage/innobase/buf/buf0rea.cc8
-rw-r--r--storage/innobase/dict/dict0dict.cc5
-rw-r--r--storage/innobase/os/os0file.cc2
-rw-r--r--storage/innobase/que/que0que.cc3
-rw-r--r--storage/innobase/row/row0upd.cc2
6 files changed, 14 insertions, 12 deletions
diff --git a/storage/innobase/buf/buf0dump.cc b/storage/innobase/buf/buf0dump.cc
index ce7488e3d1f..b318d1e9a3a 100644
--- a/storage/innobase/buf/buf0dump.cc
+++ b/storage/innobase/buf/buf0dump.cc
@@ -394,7 +394,7 @@ buf_dump(
buf_dump_status(
STATUS_VERBOSE,
"Dumping buffer pool"
- " " ULINTPF "/" ULINTPF ","
+ " " ULINTPF "/%lu,"
" page " ULINTPF "/" ULINTPF,
i + 1, srv_buf_pool_instances,
j + 1, n_pages);
@@ -595,8 +595,8 @@ buf_load()
if (dump == NULL) {
fclose(f);
buf_load_status(STATUS_ERR,
- "Cannot allocate %lu bytes: %s",
- (ulint) (dump_n * sizeof(*dump)),
+ "Cannot allocate " ULINTPF " bytes: %s",
+ dump_n * sizeof(*dump),
strerror(errno));
return;
}
diff --git a/storage/innobase/buf/buf0rea.cc b/storage/innobase/buf/buf0rea.cc
index 789918c6a35..20603021072 100644
--- a/storage/innobase/buf/buf0rea.cc
+++ b/storage/innobase/buf/buf0rea.cc
@@ -773,11 +773,11 @@ buf_read_ahead_linear(
os_aio_simulated_wake_handler_threads();
if (count) {
- DBUG_PRINT("ib_buf", ("linear read-ahead %lu pages, "
- "%lu:%lu",
+ DBUG_PRINT("ib_buf", ("linear read-ahead " ULINTPF " pages, "
+ "%u:%u",
count,
- (ulint)page_id.space(),
- (ulint)page_id.page_no()));
+ page_id.space(),
+ page_id.page_no()));
}
/* Read ahead is considered one I/O operation for the purpose of
diff --git a/storage/innobase/dict/dict0dict.cc b/storage/innobase/dict/dict0dict.cc
index d1fd3b35061..ec8ecaafee7 100644
--- a/storage/innobase/dict/dict0dict.cc
+++ b/storage/innobase/dict/dict0dict.cc
@@ -4366,7 +4366,7 @@ dict_table_get_highest_foreign_id(
}
DBUG_PRINT("dict_table_get_highest_foreign_id",
- ("id: %lu", biggest_id));
+ ("id: " ULINTPF, biggest_id));
DBUG_RETURN(biggest_id);
}
@@ -6611,7 +6611,8 @@ dict_table_schema_check(
if ((ulint) table->n_def - n_sys_cols != req_schema->n_cols) {
/* the table has a different number of columns than required */
ut_snprintf(errstr, errstr_sz,
- "%s has %lu columns but should have " ULINTPF ".",
+ "%s has " ULINTPF " columns but should have "
+ ULINTPF ".",
ut_format_name(req_schema->table_name,
buf, sizeof(buf)),
table->n_def - n_sys_cols,
diff --git a/storage/innobase/os/os0file.cc b/storage/innobase/os/os0file.cc
index a8fde2e370e..5afb4527916 100644
--- a/storage/innobase/os/os0file.cc
+++ b/storage/innobase/os/os0file.cc
@@ -7550,7 +7550,7 @@ AIO::to_file(FILE* file) const
fprintf(file,
"%s IO for %s (offset=" UINT64PF
- ", size=%lu)\n",
+ ", size=" ULINTPF ")\n",
slot.type.is_read() ? "read" : "write",
slot.name, slot.offset, slot.len);
}
diff --git a/storage/innobase/que/que0que.cc b/storage/innobase/que/que0que.cc
index 1aebef93ce5..5f9f57dc08a 100644
--- a/storage/innobase/que/que0que.cc
+++ b/storage/innobase/que/que0que.cc
@@ -417,7 +417,8 @@ que_graph_free_recursive(
}
DBUG_PRINT("que_graph_free_recursive",
- ("node: %p, type: %lu", node, que_node_get_type(node)));
+ ("node: %p, type: " ULINTPF, node,
+ que_node_get_type(node)));
switch (que_node_get_type(node)) {
diff --git a/storage/innobase/row/row0upd.cc b/storage/innobase/row/row0upd.cc
index 16cbda1cc2b..0ca5d14084c 100644
--- a/storage/innobase/row/row0upd.cc
+++ b/storage/innobase/row/row0upd.cc
@@ -3225,7 +3225,7 @@ row_upd(
ut_ad(!thr_get_trx(thr)->in_rollback);
DBUG_PRINT("row_upd", ("table: %s", node->table->name.m_name));
- DBUG_PRINT("row_upd", ("info bits in update vector: 0x%lx",
+ DBUG_PRINT("row_upd", ("info bits in update vector: 0x" ULINTPFx,
node->update ? node->update->info_bits: 0));
DBUG_PRINT("row_upd", ("foreign_id: %s",
node->foreign ? node->foreign->id: "NULL"));