Commit 767d6337 authored by Marko Mäkelä's avatar Marko Mäkelä

After-merge fix: Make GCC 4.8.5 happy

parent 5008171b
......@@ -321,8 +321,8 @@ rec_init_offsets_comp_ordinary(
ordinary:
lens = --nulls - n_core_null_bytes;
ut_d(n_null = std::min(n_core_null_bytes * 8U,
index->n_nullable));
ut_d(n_null = std::min<uint>(n_core_null_bytes * 8U,
index->n_nullable));
break;
case REC_LEAF_INSTANT:
nulls -= REC_N_NEW_EXTRA_BYTES;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment