Skip to content
Snippets Groups Projects
Commit 35f1d804 authored by Yuriy Vostrikov's avatar Yuriy Vostrikov
Browse files

[box] fix x64 build

parent 95389d3d
No related branches found
No related tags found
No related merge requests found
......@@ -1206,7 +1206,7 @@ case 12:
fiber_register_cleanup((void *)txn_cleanup, txn);
stat_collect(stat_base, MEMC_GET, 1);
stats.cmd_get++;
say_debug("ensuring space for %i keys", keys_count);
say_debug("ensuring space for %"PRI_SZ" keys", keys_count);
iov_ensure(keys_count * 5 + 1);
while (keys_count-- > 0) {
struct box_tuple *tuple;
......
......@@ -382,7 +382,7 @@ memcached_dispatch(struct box_txn *txn)
fiber_register_cleanup((void *)txn_cleanup, txn);
stat_collect(stat_base, MEMC_GET, 1);
stats.cmd_get++;
say_debug("ensuring space for %i keys", keys_count);
say_debug("ensuring space for %"PRI_SZ" keys", keys_count);
iov_ensure(keys_count * 5 + 1);
while (keys_count-- > 0) {
struct box_tuple *tuple;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment