Commit 961aa8ea authored by marko's avatar marko

row_build_index_entry(): Declare variables in the beginning of a block,

to comply with ISO/IEC 9899:1989.  This error was made in r834.  (Bug #22575)
parent 379c0d23
......@@ -131,8 +131,9 @@ row_build_index_entry(
}
for (i = 0; i < entry_len; i++) {
const dict_col_t* col;
ind_field = dict_index_get_nth_field(index, i);
const dict_col_t* col = ind_field->col;
col = ind_field->col;
dfield = dtuple_get_nth_field(entry, i);
......
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