Skip to content
Snippets Groups Projects
Commit 16151314 authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

Fix box/tree_misc.test.lua on 32-bit

parent 0a37ccad
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ memtx_rtree_index_new(struct memtx_engine *memtx, struct index_def *def)
if (def->opts.dimension < 1 ||
def->opts.dimension > RTREE_MAX_DIMENSION) {
diag_set(UnsupportedIndexFeature, def,
tt_sprintf("dimension (%u): must belong to "
tt_sprintf("dimension (%lld): must belong to "
"range [%u, %u]", def->opts.dimension,
1, RTREE_MAX_DIMENSION));
return NULL;
......
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